home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / sbin / dkms < prev    next >
Text File  |  2009-08-26  |  135KB  |  3,920 lines

  1. #!/bin/bash
  2. #
  3. #  Dynamic Kernel Module Support (DKMS) <dkms-devel@dell.com>
  4. #  Copyright (C) 2003-2008 Dell, Inc.
  5. #  by Gary Lerhaupt, Matt Domsch, & Mario Limonciello
  6. #
  7. #    This program is free software; you can redistribute it and/or modify
  8. #    it under the terms of the GNU General Public License as published by
  9. #    the Free Software Foundation; either version 2 of the License, or
  10. #    (at your option) any later version.
  11. #
  12. #    This program is distributed in the hope that it will be useful,
  13. #    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. #    GNU General Public License for more details.
  16. #
  17. #    You should have received a copy of the GNU General Public License
  18. #    along with this program; if not, write to the Free Software
  19. #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  20. #
  21.  
  22. function invoke_command ()
  23. {
  24.     local exitval=0
  25.     local exitval_file=`mktemp $tmp_location/dkms.XXXXXX`
  26.     [ -z "$verbose" ] && echo -en "$2..." || echo -e "$1"
  27.     if [ "$3" == background ] && [ -z "$verbose" ]; then
  28.     (eval $1 >/dev/null 2>&1; echo "exitval=$?" >> "$exitval_file") &
  29.     while [ -e "$exitval_file" ] && ! [ -s "$exitval_file" ]; do
  30.         sleep 3
  31.         echo -en "."
  32.     done
  33.     . "$exitval_file"
  34.     else
  35.     eval $1; exitval=$?
  36.     fi
  37.     [ $exitval -gt 0 ] && echo -en "(bad exit status: $exitval)"
  38.     rm -f "$exitval_file"
  39.     echo -en "\n"
  40.     return $exitval
  41. }
  42.  
  43. function show_usage ()
  44. {
  45.     echo $"Usage: $0 [action] [options]"
  46.     echo $"  [action]  = { add | remove | build | install | uninstall | match"
  47.     echo $"               | mkdriverdisk | mktarball | ldtarball | mkrpm | mkkmp | mkdeb | status }"
  48.     echo $"  [options] = [-m module] [-v module-version] [-k kernel-version] [-a arch]"
  49.     echo $"              [-d distro] [-c dkms.conf-location] [-q] [--force] [--all]"
  50.     echo $"              [--templatekernel=kernel] [--directive='cli-directive=cli-value']"
  51.     echo $"              [--config=kernel-.config-location] [--archive=tarball-location]"
  52.     echo $"              [--kernelsourcedir=source-location] [--no-prepare-kernel]"
  53.     echo $"              [--binaries-only] [--source-only] [-r release (SuSE)] [--verbose]"
  54.     echo $"              [--size] [--spec=specfile] [--media=floppy|iso|tar] [--legacy-postinst=0|1]"
  55. }
  56.  
  57. function readlink()
  58. {
  59.     # $1 = the symlink to read
  60.     read_link=""
  61.     if [ -L "$1" ]; then
  62.     read_link="$1"
  63.     while [ -L "$read_link" ]; do
  64.         read_link=`ls -l $read_link | sed 's/.*-> //'`
  65.     done
  66.     fi
  67. }
  68.  
  69. function VER()
  70. {
  71.     # $1 = kernel version string
  72.  
  73.     # Pad all numbers in $1 so that they have at least three digits, e.g.,
  74.     #   2.6.9-1cvs200409091247 => 002.006.009-001cvs200409091247
  75.     # The result should compare correctly as a string.
  76.  
  77.     echo $1 | sed -e 's:\([^0-9]\)\([0-9]\):\1 \2:g' \
  78.               -e 's:\([0-9]\)\([^0-9]\):\1 \2:g' \
  79.           -e 's:\(.*\): \1 :' \
  80.           -e 's: \([0-9]\) : 00\1 :g' \
  81.           -e 's: \([0-9][0-9]\) : 0\1 :g' \
  82.           -e 's: ::g'
  83. }
  84.  
  85. function set_module_suffix ()
  86. {
  87.     # $1 = the kernel to base the module_suffix on
  88.     kernel_test="$1"
  89.     [ -z "$kernel_test" ] && kernel_test=`uname -r`
  90.  
  91.     if [[ $(VER $kernel_test) < $(VER 2.5) ]]; then
  92.     module_suffix=".o"
  93.     else
  94.     module_suffix=".ko"
  95.     fi
  96. }
  97.  
  98. function set_kernel_source_dir ()
  99. {
  100.     # $1 = the kernel to base the directory on
  101.     if [ -z "$kernel_source_dir" ] && [ -d "$install_tree/$1/build" ]; then
  102.         kernel_source_dir="$install_tree/$1/build"
  103.     fi
  104. }
  105.  
  106. function setup_kernels_arches ()
  107. {
  108.     # Error if # of arches doesn't match # of kernels
  109.     if [ ${#kernelver_array[@]} -ne ${#arch_array[@]} ] && [ ${#arch_array[@]} -gt 1 ]; then
  110.     echo $"" >&2
  111.     echo $"Error!  If more than one arch is specified on the command line, then there" >&2
  112.     echo $"must be an equal number of kernel versions also specified (1:1 relationship)." >&2
  113.     exit 1
  114.     fi
  115.  
  116.     # Check that kernel version and all aren't both set simultaneously
  117.     if [ -n "${kernelver_array[0]}" ] && [ -n "$all" ]; then
  118.     echo $"" >&2
  119.     echo $"Error!  You cannot specify a kernel version and also specify" >&2
  120.     echo $"--all on the command line." >&2
  121.     exit 2
  122.     fi
  123.  
  124.     # Check that arch and all aren't both set simultaneously
  125.     if [ -n "${arch_array[0]}" ] && [ -n "$all" ]; then
  126.     echo $"" >&2
  127.     echo $"Error!  You cannot specify an arch and also specify" >&2
  128.     echo $"--all on the command line." >&2
  129.     exit 3
  130.     fi
  131.  
  132.     # Check that the actions supports multiple kernels
  133.     case "$1" in
  134.     add | build | install | match | uninstall | mkkmp )
  135.     if [ ${#kernelver_array[@]} -gt 1 ]; then
  136.         echo $"" >&2
  137.         echo $"Error! The action $1 does not support multiple kernel version" >&2
  138.         echo $"parameters on the command line." >&2
  139.         exit 4
  140.     fi
  141.     if [ -n "$all" ]; then
  142.         echo $"" >&2
  143.         echo $"Error! The action $1 does not support the --all" >&2
  144.         echo $"parameter." >&2
  145.         exit 5
  146.     fi
  147.     ;;
  148.     esac
  149.  
  150.     # If all is set, use dkms status to fill the arrays
  151.     if [ -n "$all" ] && [ "$1" != "status" ]; then
  152.     local i=0
  153.     while read line; do
  154.         # (I would leave out the delimiters in the status output
  155.         #  in the first place.)
  156.         kernelver_array[$i]=`echo $line | awk {'print $3'} | sed 's/,$//'`
  157.         arch_array[$i]=`echo $line | awk {'print $4'} | sed 's/:$//'`
  158.         i=$(($i + 1))
  159.     done < <($0 status -m "$module" -v "$module_version" 2>/dev/null | \
  160.          egrep "built|installed" | egrep -v 'installed-weak')
  161.     fi
  162.  
  163.     # Set default kernel version and arch, if none set (but only --all isn't set)
  164.     if [ "$1" != "status" ]; then
  165.     [ -z "${kernelver_array[0]}" ] && [ -z "$all" ] && kernelver_array[0]=`uname -r`
  166.     if [ -z "${arch_array[0]}" ] && [ -n "${kernelver_array[0]}" ]; then
  167.         kernelver_rpm=`rpm -qf "/lib/modules/${kernelver_array[0]}" 2>/dev/null | grep -v "not owned by any package" | grep kernel | head -n 1`
  168.         if ! arch_array[0]=`rpm -q --queryformat "%{ARCH}" "$kernelver_rpm" 2>/dev/null`; then
  169.         arch_array[0]=`uname -m`
  170.         if [ ${arch_array[0]} == "x86_64" ] && \
  171.             grep -q Intel /proc/cpuinfo && \
  172.             ls $install_tree/${kernelver_array[0]}/build/configs \
  173.             2>/dev/null | grep -q "ia32e"; then
  174.             arch_array[0]="ia32e"
  175.         fi
  176.         fi
  177.     fi
  178.     fi
  179.  
  180.     # If only one arch is specified, make it so for all the kernels
  181.     if [ ${#arch_array[@]} -eq 1 ] && [ ${#kernelver_array[@]} -gt 1 ]; then
  182.     while [ ${#arch_array[@]} -lt ${#kernelver_array[@]} ]; do
  183.         arch_array[${#arch_array[@]}]=${arch_array[0]}
  184.     done
  185.     fi
  186.  
  187.     # Set global multi_arch
  188.     multi_arch=""
  189.     local i=0
  190.     while [ $i -lt ${#arch_array[@]} ]; do
  191.     [ "${arch_array[0]}" != "${arch_array[$i]}" ] && multi_arch="true"
  192.     i=$(($i + 1))
  193.     done
  194. }
  195.  
  196. function do_depmod()
  197. {
  198.     # $1 = kernel version
  199.     depmod -au "$1" -F "/boot/System.map-$1"
  200. }
  201.  
  202. function remake_initrd()
  203. {
  204.     # $1 = kernel version
  205.     # $2 = arch
  206.  
  207.     local exitval="0"
  208.     local mkinitrd='mkinitrd'
  209.  
  210.  
  211.     # Support initramfs distributions (Debian/Ubuntu).
  212.     if [ -x "/usr/sbin/update-initramfs" ]; then
  213.         mkinitrd='update-initramfs'
  214.     fi
  215.  
  216.     $mkinitrd --version >/dev/null 2>&1
  217.     if [ "$?" -eq 0 ]; then
  218.           echo $""
  219.     initrd_dir="/boot"
  220.     [ "$2" == "ia64" ] && [ -d "/boot/efi/efi/redhat" ] && initrd_dir="/boot/efi/efi/redhat"
  221.     echo $"Saving old initrd as $initrd_dir/initrd-$1_old.img"
  222.     cp -f "$initrd_dir/initrd-$1.img" "$initrd_dir/initrd-$1_old.img"
  223.     echo $"Making new initrd as $initrd_dir/initrd-$1.img"
  224.     echo $"(If next boot fails, revert to the _old initrd image)"
  225.     invoke_command "$mkinitrd -f $initrd_dir/initrd-$1.img $1" "$mkinitrd" background
  226.     exitval="$?"
  227.     elif [ -e /etc/SuSE-release ] || [ -d /etc/SuSEconfig ]; then
  228.     echo $""
  229.     initrd_dir="/boot"
  230.     kernel_file="vmlinuz"
  231.     if [ ! -f "$initrd_dir/$kernel_file-$1" ]; then
  232.         kernel_file="vmlinux"
  233.         if [ ! -f "$initrd_dir/$kernel_file-$1" ]; then
  234.             echo $"Error! Unable to find valid kernel file under " >&2
  235.             echo $"$initrd_dir for kernel version $1" >&2
  236.             echo $"" >&2
  237.             return 1;
  238.         fi
  239.     fi
  240.     echo $"Saving old initrd as $initrd_dir/initrd-$1_old"
  241.     cp -f "$initrd_dir/initrd-$1" "$initrd_dir/initrd-$1_old"
  242.     echo $"Making new initrd as $initrd_dir/initrd-$1"
  243.     echo $"(If next boot fails, revert to the _old initrd image)"
  244.     invoke_command "$mkinitrd -k $kernel_file-$1 -i initrd-$1" "$mkinitrd" background
  245.     exitval="$?"
  246.     elif [ -e /etc/debian_version ]; then
  247.           echo $""
  248.     initrd_dir="/boot"
  249.     echo $"Updating initrd"
  250.     echo $"Making new initrd as $initrd_dir/initrd.img-$1"
  251.     echo $"(If next boot fails, revert to the .bak initrd image)"
  252.     if [ "$mkinitrd" == "update-initramfs" ]; then
  253.         invoke_command "$mkinitrd -u" "$mkinitrd" background
  254.     else
  255.         echo $"Saving old initrd as $initrd_dir/initrd.img-$1.bak"
  256.         # we use the same convention as update-initramfs, so that we just
  257.         # print the warning once
  258.         cp -f "$initrd_dir/initrd.img-$1" "$initrd_dir/initrd.img-$1.bak"
  259.         invoke_command "$mkinitrd -o $initrd_dir/initrd.img-$1 $1" "$mkinitrd" background
  260.     fi
  261.     exitval="$?"
  262.     else
  263.     echo $""
  264.     echo $"Calling $mkinitrd (bad exit status 9 may occur)"
  265.     invoke_command "$mkinitrd" "$mkinitrd" background
  266.     exitval="$?"
  267.     fi
  268.  
  269.     return $exitval
  270. }
  271.  
  272. function distro_version_rpm()
  273. {
  274.     local whatprovides_redhat
  275.     local whatprovides_suse
  276.     local whatprovides_sles
  277.     local whatprovides_ovm
  278.     local DISTRO
  279.     local VER
  280.     local dist=unknown
  281.  
  282.     if ! which rpm > /dev/null 2>&1 ; then
  283.     echo "${dist}"
  284.     return
  285.     fi
  286.     
  287.     whatprovides_redhat=$(rpm -q --whatprovides redhat-release)
  288.     if [ $? -eq 0 ]; then
  289.     case "${whatprovides_redhat}" in
  290.         redhat*)     DISTRO=redhat ;;
  291.         centos*)     DISTRO=centos ;;
  292.         enterprise*) DISTRO=oel ;; # Oracle Enterprise Linux
  293.         sl*)         DISTRO=sl ;;  # Scientific Linux
  294.         fedora*)     DISTRO=fedora ;;
  295.         *) ;;
  296.     esac
  297.     fi
  298.     whatprovides_sles=$(rpm -q --whatprovides sles-release)
  299.     [ $? -eq 0 ] && DISTRO=sles
  300.     whatprovides_suse=$(rpm -q --whatprovides suse-release)
  301.     [ $? -eq 0 ] && DISTRO=suse
  302.     whatprovides_ovm=$(rpm -q --whatprovides ovs-release)
  303.     [ $? -eq 0 ] && DISTRO=ovm
  304.  
  305.     case "${DISTRO}" in
  306.     redhat)
  307.         VER=$(rpm -q --qf "%{version}\n" ${whatprovides_redhat})
  308.             # format is 3AS, 4AS, 5Desktop...
  309.         VER=$(echo "${VER}" | sed -e 's/^\([[:digit:]]*\).*/\1/g')
  310.         dist=el${VER}
  311.         ;;
  312.     centos)
  313.         VER=$(rpm -q --qf "%{version}\n" ${whatprovides_redhat})
  314.             # format is 3, 4, ...
  315.         dist=el${VER}
  316.         ;;
  317.     oel) 
  318.         VER=$(rpm -q --qf "%{version}\n" ${whatprovides_redhat})
  319.             # format is 3, 4, ...
  320.         dist=el${VER}
  321.         ;;
  322.     ovm) 
  323.         VER=$(rpm -q --qf "%{version}\n" ${whatprovides_ovm})
  324.             # format is 2.1
  325.         dist=ovm${VER}
  326.         ;;
  327.     sl) 
  328.         VER=$(rpm -q --qf "%{version}\n" ${whatprovides_redhat})
  329.         # format is 4.7, 5.3
  330.         VER=$(echo "${VER}" | sed -e 's/^\([[:digit:]]*\).*/\1/g')
  331.         dist=el${VER}
  332.         ;;
  333.     fedora) 
  334.         VER=$(rpm -q --qf "%{version}\n" ${whatprovides_redhat})
  335.         dist=fc${VER}
  336.         ;;
  337.     sles)
  338.         VER=$(rpm -q --qf "%{version}\n" ${whatprovides_sles})
  339.         dist=sles${VER}
  340.         ;;
  341.     suse)
  342.         VER=$(rpm -q --qf "%{version}\n" ${whatprovides_suse})
  343.         dist=suse${VER}
  344.         ;;
  345.     *)
  346.         dist=unknown
  347.         ;;
  348.     esac
  349.     echo "$dist"
  350. }
  351.  
  352. function distro_version()
  353. {
  354. # What distribution are we running?
  355.     local LSB_RELEASE
  356.     local LSB_DESCRIPTION
  357.     local DISTRIB_ID
  358.     local DISTRIB_RELEASE
  359.     local VER
  360.     local dist=unknown
  361.  
  362. # try the LSB-provided strings first
  363.     if [ -r /etc/lsb-release ]; then
  364.     . /etc/lsb-release
  365.     LSB_RELEASE=1
  366.     elif type lsb_release >/dev/null 2>&1; then
  367.     DISTRIB_ID=$(lsb_release -i -s)
  368.     DISTRIB_RELEASE=$(lsb_release -r -s)
  369.     LSB_RELEASE=1
  370.     fi
  371.  
  372.     case "${DISTRIB_ID}" in
  373.     Fedora)             dist=fc${DISTRIB_RELEASE} ;;
  374.     RedHatEnterprise*)  # OEL also reports as such
  375.         # format is 4.7, 5.3
  376.         VER=$(echo "${DISTRIB_RELEASE}" | sed -e 's/^\([[:digit:]]*\).*/\1/g')
  377.         dist=el${VER}
  378.         ;;
  379.     CentOS)
  380.         # format is 4.7, 5.3
  381.         VER=$(echo "${DISTRIB_RELEASE}" | sed -e 's/^\([[:digit:]]*\).*/\1/g')
  382.         dist=el${VER}
  383.         ;;
  384.     ScientificSL)
  385.         # format is 4.7, 5.3
  386.         VER=$(echo "${DISTRIB_RELEASE}" | sed -e 's/^\([[:digit:]]*\).*/\1/g')
  387.         dist=el${VER}
  388.         ;;
  389.     SUSE*)
  390.         LSB_DESCRIPTION="$(lsb_release -d -s)"
  391.         if echo "${LSB_DESCRIPTION}" | grep Enterprise > /dev/null 2>&1; then
  392.         dist=sles${DISTRIB_RELEASE}
  393.         else
  394.         dist=suse${DISTRIB_RELEASE}
  395.         fi
  396.         ;;
  397.     *)     
  398.         if [ -n "${LSB_RELEASE}" -a -n "${DISTRIB_ID}" -a -n "${DISTRIB_RELEASE}" ]; then
  399.         dist="${DISTRIB_ID}${DISTRIB_RELEASE}"
  400.         fi
  401.         ;;
  402.     esac
  403.  
  404.     if [ "${dist}" == "unknown" ]; then
  405.     dist=$(distro_version_rpm)
  406.     fi
  407.     echo "$dist"
  408. }
  409.  
  410. function override_dest_module_location()
  411. {
  412.     local orig_location="$1"
  413.     [ -n "${addon_modules_dir}" ] && echo "/${addon_modules_dir}" && return
  414.  
  415.     case "$running_distribution" in
  416.     fc[12345]) ;;
  417.         el[1234]) ;;
  418.     sles[123456789]) ;;
  419.     suse[123456789]) ;;
  420.     suse10\.[01]) ;;
  421.     fc*) echo "/extra" && return ;;
  422.     el*) echo "/extra" && return ;;
  423.     ovm*) echo "/extra" && return ;;
  424.     sles*) echo "/updates" && return ;;
  425.     suse*) echo "/updates" && return ;;
  426.     Ubuntu*) echo "/updates/dkms" && return ;;
  427.     Debian*) echo "/updates/dkms" && return ;;
  428.     *) ;;
  429.     esac
  430.     echo "$orig_location"
  431. }
  432.  
  433. function read_conf ()
  434. {
  435.     # $1 kernel version (required)
  436.     # $2 arch (required)
  437.     # $3 dkms.conf location (optional)
  438.  
  439.     local return_value=0
  440.     local read_conf_file
  441.  
  442.     # Find which conf file to check
  443.     if [ -n "$3" ]; then
  444.     read_conf_file="$3"
  445.     elif [ -n "$conf" ]; then
  446.     read_conf_file="$conf"
  447.     else
  448.     read_conf_file="$dkms_tree/$module/$module_version/source/dkms.conf"
  449.     fi
  450.  
  451.     # Clear variables
  452.     MAKE=""
  453.     CLEAN=""
  454.     REMAKE_INITRD=""
  455.     remake_initrd=""
  456.     PACKAGE_NAME=""
  457.     PACKAGE_VERSION=""
  458.     POST_ADD=""
  459.     POST_BUILD=""
  460.     POST_INSTALL=""
  461.     POST_REMOVE=""
  462.     PRE_BUILD=""
  463.     PRE_INSTALL=""
  464.     BUILD_EXCLUSIVE_KERNEL=""
  465.     BUILD_EXCLUSIVE_ARCH=""
  466.     build_exclude=""
  467.     OBSOLETE_BY=""
  468.  
  469.     # Clear arrays
  470.     unset MAKE
  471.     unset MAKE_MATCH
  472.     unset MODULES_CONF
  473.     unset modules_conf_array
  474.     unset PATCH
  475.     unset PATCH_MATCH
  476.     unset patch_array
  477.     unset BUILT_MODULE_NAME
  478.     unset built_module_name
  479.     unset BUILT_MODULE_LOCATION
  480.     unset built_module_location
  481.     unset DEST_MODULE_NAME
  482.     unset dest_module_name
  483.     unset DEST_MODULE_LOCATION
  484.     unset dest_module_location
  485.     unset MODULES_CONF_OBSOLETES
  486.     unset modules_conf_obsoletes
  487.     unset MODULES_CONF_ALIAS_TYPE
  488.     unset modules_conf_alias_type
  489.     unset MODULES_CONF_OBSOLETE_ONLY
  490.     unset modules_conf_obsolete_only
  491.     unset STRIP
  492.     unset strip
  493.  
  494.     # Set variables supported in dkms.conf files (eg. $kernelver)
  495.     kernelver="$1"
  496.     arch="$2"
  497.     set_kernel_source_dir "$1"
  498.  
  499.     # Source in the dkms.conf
  500.     . $read_conf_file 2>/dev/null
  501.  
  502.     # check environment for directives
  503.     # You can't have an array of variables exported
  504.     # so look for DKMS_DIRECTIVE0, DKMS_DIRECTIVE1, ...
  505.     for directive in `set | grep ^DKMS_DIRECTIVE | cut -d = -f 2-3`; do
  506.     directive_name=${directive%%=*}
  507.     directive_value=${directive#*=}
  508.     export $directive_name="$directive_value"
  509.     echo $"DIRECTIVE: $directive_name=\"$directive_value\""
  510.     done
  511.  
  512.     # Source in the directive_array
  513.     for directive in "${directive_array[@]}"; do
  514.     directive_name=${directive%%=*}
  515.     directive_value=${directive#*=}
  516.     export $directive_name="$directive_value"
  517.     echo $"DIRECTIVE: $directive_name=\"$directive_value\""
  518.     done
  519.  
  520.     # Set variables
  521.     clean="$CLEAN"
  522.     package_name="$PACKAGE_NAME"
  523.     package_version="$PACKAGE_VERSION"
  524.     post_add="$POST_ADD"
  525.     post_build="$POST_BUILD"
  526.     post_install="$POST_INSTALL"
  527.     post_remove="$POST_REMOVE"
  528.     pre_build="$PRE_BUILD"
  529.     pre_install="$PRE_INSTALL"
  530.     obsolete_by="$OBSOLETE_BY"
  531.  
  532.     # Set module naming/location arrays
  533.     local index=0
  534.     array_size=`echo -e "${#BUILT_MODULE_NAME[@]}\n${#BUILT_MODULE_LOCATION[@]}\n${#DEST_MODULE_NAME[@]}\n${#DEST_MODULE_LOCATION[@]}\n" | sort -n | tail -n 1`
  535.     while [ "$index" -lt "$array_size" ]; do
  536.     # Set values
  537.     built_module_name[$index]=${BUILT_MODULE_NAME[$index]}
  538.     built_module_location[$index]=${BUILT_MODULE_LOCATION[$index]}
  539.     dest_module_name[$index]=${DEST_MODULE_NAME[$index]}
  540.     dest_module_location[$index]=${DEST_MODULE_LOCATION[$index]}
  541.     modules_conf_obsoletes[$index]=${MODULES_CONF_OBSOLETES[$index]}
  542.     modules_conf_alias_type[$index]=${MODULES_CONF_ALIAS_TYPE[$index]}
  543.     case "${MODULES_CONF_OBSOLETE_ONLY[$index]}" in
  544.         [yY]*)
  545.         modules_conf_obsolete_only[$index]="yes"
  546.         ;;
  547.     esac
  548.     case "${STRIP[$index]}" in
  549.         [nN]*)
  550.         strip[$index]="no"
  551.         ;;
  552.         *)
  553.         strip[$index]="yes"
  554.         ;;
  555.     esac
  556.  
  557.     # If unset, set by defaults
  558.     [ -z "${built_module_name[$index]}" ] && [ ${#DEST_MODULE_LOCATION[@]} -eq 1 ] && built_module_name[$index]=$module
  559.     [ -z "${dest_module_name[$index]}" ] && dest_module_name[$index]=${built_module_name[$index]}
  560.     if [ -n "${built_module_location[$index]}" ] && \
  561.        [ "${built_module_location[$index]:(-1)}" != "/" ]; then
  562.         built_module_location[$index]="${built_module_location[$index]}/"
  563.     fi
  564.  
  565.     # FAIL if no built_module_name
  566.     if [ -z "${built_module_name[$index]}" ]; then
  567.         echo $"dkms.conf: Error! No 'BUILT_MODULE_NAME' directive specified for record #$index." >&2
  568.         return_value=1
  569.     fi
  570.  
  571.     # FAIL if built_module_name ends in .o or .ko
  572.     case "${built_module_name[$index]}" in
  573.         *.o | *.ko)
  574.         echo $"dkms.conf: Error! 'BUILT_MODULE_NAME' directive ends in '.o' or '.ko' in record #$index." >&2
  575.         return_value=1
  576.         ;;
  577.     esac
  578.  
  579.     # FAIL if dest_module_name ends in .o or .ko
  580.     case "${dest_module_name[$index]}" in
  581.         *.o | *.ko)
  582.         echo $"dkms.conf: Error! 'DEST_MODULE_NAME' directive ends in '.o' or '.ko' in record #$index." >&2
  583.         return_value=1
  584.         ;;
  585.     esac
  586.  
  587.     # Override location for specific kernels
  588.     dest_module_location[$index]="$(override_dest_module_location ${dest_module_location[$index]})"
  589.  
  590.     # Fail if no DEST_MODULE_LOCATION
  591.     if [ -z "${DEST_MODULE_LOCATION[$index]}" ]; then
  592.         echo $"dkms.conf: Error! No 'DEST_MODULE_LOCATION' directive specified for record #$index.">&2
  593.         return_value=1
  594.     fi
  595.         # Fail if bad DEST_MODULE_LOCATION
  596.     case "${DEST_MODULE_LOCATION[$index]}" in
  597.         /kernel*)
  598.         ;;
  599.         /updates*)
  600.         ;;
  601.         /extra*)
  602.         ;;
  603.         *)
  604.         echo $"dkms.conf: Error! Directive 'DEST_MODULE_LOCATION' does not begin with">&2
  605.         echo $"'/kernel', '/updates', or '/extra' in record #$index.">&2
  606.         return_value=1
  607.         ;;
  608.     esac
  609.  
  610.     index=$(($index+1))
  611.     done
  612.  
  613.     # Get the correct make command
  614.     index=0
  615.     [ -z "${MAKE_MATCH[0]}" ] && make_command="${MAKE[0]}"
  616.     while [ "$index" -lt ${#MAKE[@]} ]; do
  617.     if [ -n "${MAKE[$index]}" ] && \
  618.         [ -n "${MAKE_MATCH[$index]}" ] && \
  619.         echo $1 | egrep -q "${MAKE_MATCH[$index]}"; then
  620.         make_command="${MAKE[$index]}"
  621.     fi
  622.     index=$(($index+1))
  623.     done
  624.  
  625.     # Use the generic make and make clean commands if not specified
  626.     if [[ $(VER $1) < $(VER 2.6.6) ]]; then
  627.     if [ -z "$make_command" ]; then
  628.         make_command="make -C $kernel_source_dir SUBDIRS=$dkms_tree/$module/$module_version/build modules"
  629.     fi
  630.     if [ -z "$clean" ]; then
  631.         clean="make -C $kernel_source_dir SUBDIRS=$dkms_tree/$module/$module_version/build clean"
  632.     fi
  633.     else
  634.     if [ -z "$make_command" ]; then
  635.         make_command="make -C $kernel_source_dir M=$dkms_tree/$module/$module_version/build"
  636.     fi
  637.     if [ -z "$clean" ]; then
  638.         clean="make -C $kernel_source_dir M=$dkms_tree/$module/$module_version/build clean"
  639.     fi
  640.     fi
  641.  
  642.     # Set modules_conf_array
  643.     index=0
  644.     while [ "$index" -lt ${#MODULES_CONF[@]} ]; do
  645.     [ -n "${MODULES_CONF[$index]}" ] && modules_conf_array[$index]="${MODULES_CONF[$index]}"
  646.     index=$(($index+1))
  647.     done
  648.  
  649.     # Set patch_array (including kernel specific patches)
  650.     index=0
  651.     count=0
  652.     while [ "$index" -lt ${#PATCH[@]} ]; do
  653.     if [ -n "${PATCH[$index]}" ]; then
  654.         if [ -z "${PATCH_MATCH[$index]}" ] || \
  655.             echo $1 | egrep -q "${PATCH_MATCH[$index]}"; then
  656.             patch_array[$count]="${PATCH[$index]}"
  657.             count=$(($count+1))
  658.         fi
  659.     fi
  660.     index=$(($index+1))
  661.     done
  662.  
  663.     # Set remake_initrd
  664.     [ `echo "$REMAKE_INITRD" | grep -ic "^y"` -gt 0 ] && remake_initrd="yes"
  665.  
  666.     # Set build_exclude
  667.     if [ -n "$BUILD_EXCLUSIVE_KERNEL" ]; then
  668.     echo $1 | egrep -q "$BUILD_EXCLUSIVE_KERNEL" || build_exclude="yes"
  669.     fi
  670.     if [ -n "$BUILD_EXCLUSIVE_ARCH" ]; then
  671.     echo $2 | egrep -q "$BUILD_EXCLUSIVE_ARCH" || build_exclude="yes"
  672.     fi
  673.  
  674.     # Fail if absolutely no DEST_MODULE_LOCATION
  675.     if [ ${#dest_module_location[@]} -eq 0 ]; then
  676.     echo $"dkms.conf: Error! No 'DEST_MODULE_LOCATION' directive specified." >&2
  677.     return_value=1
  678.     fi
  679.  
  680.     # Fail if no PACKAGE_NAME
  681.     if [ -z "$package_name" ]; then
  682.     echo $"dkms.conf: Error! No 'PACKAGE_NAME' directive specified.">&2
  683.     return_value=1
  684.     fi
  685.  
  686.     # Fail if no PACKAGE_VERSION
  687.     if [ -z "$package_version" ]; then
  688.     echo $"dkms.conf: Error! No 'PACKAGE_VERSION' directive specified.">&2
  689.     return_value=1
  690.     fi
  691.  
  692.     # Set clean
  693.     [ -z "$clean" ] && clean="make clean"
  694.  
  695.     return $return_value
  696. }
  697.  
  698.  
  699. function check_version_sanity ()
  700. {
  701.     # $1 = kernel_version
  702.     # $2 = arch
  703.     # $3 = obs by kernel version
  704.     # $4 = dest_module_name
  705.  
  706.     local lib_tree="$install_tree/$1"
  707.     echo $"Running module version sanity check."
  708.     local module_count=`find $lib_tree -name ${4}$module_suffix | wc -l | awk {'print $1'}`
  709.     if [ $module_count -gt 1 ]; then
  710.         echo $"Warning! Cannot do version sanity checking because multiple ${4}$module_suffix" >&2
  711.         echo $"modules were found in kernel $1." >&2
  712.     elif [ $module_count -eq 1 ]; then
  713.         local kernels_module=`find $lib_tree -name ${4}$module_suffix`
  714.         local kernels_ver_string=`modinfo $kernels_module | grep "^version:"`
  715.         local kernels_ver_value=`echo $kernels_ver_string | awk {'print $2'}`
  716.         local dkms_module="$dkms_tree/$module/$module_version/$1/$2/module/${4}$module_suffix"
  717.         local dkms_ver_string=`modinfo $dkms_module | grep "^version:"`
  718.         local dkms_ver_value=`echo $dkms_ver_string | awk {'print $2'}`
  719.  
  720.         # there are 2 possible srcversion checksums
  721.         # one in the 'srcversion' tag alone (preferred)
  722.         # and one following the version field in the 'version' tag (deprecated)
  723.         local kernels_ver_checksum=`modinfo $kernels_module | awk '/^srcversion:/ {print $2}'`
  724.         local dkms_ver_checksum=`modinfo $dkms_module | awk '/^srcversion:/ {print $2}'`
  725.         if [ -z "$kernels_ver_checksum" -a -z "$dkms_ver_checksum" ]; then
  726.         kernels_ver_checksum=`echo $kernels_ver_string | awk {'print $3'}`
  727.         dkms_ver_checksum=`echo $dkms_ver_string | awk {'print $3'}`
  728.         fi
  729.  
  730.         if [ -n "$kernels_ver_checksum" -a -n "$dkms_ver_checksum" -a \
  731.             "$kernels_ver_checksum" == "$dkms_ver_checksum" -a -z "$force" ]; then
  732.         echo $"" >&2
  733.         echo $"Good news! Module version $dkms_ver_value for ${4}$module_suffix" >&2
  734.         echo $"exactly matches what is already found in kernel $1." >&2
  735.         echo $"DKMS will not replace this module." >&2
  736.         echo $"You may override by specifying --force." >&2
  737.         return 1
  738.         fi
  739.  
  740.         if [ -n "$kernels_ver_value" -a -n "$dkms_ver_value" ]; then
  741.         if [[ ! ( $(VER $dkms_ver_value) > \
  742.                   $(VER $kernels_ver_value) ) && -z "$force" ]]; then
  743.             echo $"" >&2
  744.             echo $"Error! Module version $dkms_ver_value for ${4}$module_suffix" >&2
  745.             echo $"is not newer than what is already found in kernel $1 ($kernels_ver_value)." >&2
  746.             echo $"You may override by specifying --force." >&2
  747.             return 1
  748.         fi
  749.         fi
  750.  
  751.         local obs_upstream=`echo $3 | cut -d- -f 1`
  752.         local obs_local=`echo $3 | cut -d- -f 2`
  753.         local my_upstream=`echo $1 | cut -d- -f 1`
  754.         local my_local=`echo $1 | cut -d- -f 2`
  755.         local obsolete=0
  756.         if [ -n "$obs_upstream" -a -n "$my_upstream" ]; then
  757.             if [[ ( $(VER $obs_upstream) == $(VER $my_upstream) ) && -z "$force" ]]; then
  758.             #they get obsoleted possibly in this kernel release
  759.                 if [ -z "$obs_local" ]; then
  760.                 #they were obsoleted in this upstream kernel
  761.                     obsolete=1
  762.                 elif [[ ( $(VER $my_local) > $(VER $obs_local) ) ]]; then
  763.                 #they were obsoleted in an earlier ABI bump of the kernel
  764.                     obsolete=1
  765.                 elif [[ ( $(VER $my_local) = $(VER $obs_local) ) ]]; then
  766.                 #they were obsoleted in this ABI bump of the kernel
  767.                     obsolete=1
  768.                 fi
  769.             elif [[ ( $(VER $my_upstream) > $(VER $obs_upstream) ) && -z "$force" ]]; then
  770.             #they were obsoleted in an earlier kernel release
  771.                 obsolete=1
  772.             fi
  773.         fi
  774.  
  775.         if [ "$obsolete" == 1 ]; then
  776.             echo $"" >&2
  777.             echo $"Module has been obsoleted due to being included" >&2
  778.             echo $"in kernel $3.  We will avoid installing" >&2
  779.             echo $"for future kernels above $3." >&2
  780.             echo $"You may override by specifying --force." >&2
  781.             return 1
  782.         fi
  783.     fi
  784.     return 0
  785. }
  786.  
  787.  
  788. function moduleconfig_add ()
  789. {
  790.     # $1 = kernel version
  791.  
  792.     local temp_dir_name=`mktemp -d $tmp_location/dkms.XXXXXX`
  793.     modconfig_files=""
  794.     [ -e /etc/modprobe.d/dkms.conf ] && modconfig_files="/etc/modprobe.d/dkms.conf"
  795.     [ -e /etc/modprobe.d/dkms ] && modconfig_files="/etc/modprobe.d/dkms"
  796.     [ -e /etc/modules.conf ] && modconfig_files="$modconfig_files /etc/modules.conf"
  797.     [ -e /etc/modprobe.conf ] && modconfig_files="$modconfig_files /etc/modprobe.conf"
  798.     [ -e /etc/modprobe.d/$package_name.conf ] && modconfig_files="/etc/modprobe.d/$package_name.conf"
  799.  
  800.     if [ -z "$modconfig_files" ]; then
  801.         modconfig_files="/etc/modprobe.d/$package_name.conf"
  802.     fi
  803.  
  804.  
  805.     for moduleconfig in $modconfig_files; do
  806.     local index=0
  807.     while [ $index -lt ${#dest_module_name[@]} ]; do
  808.  
  809.           # Replace obsolete references in module-config-file with the new module name
  810.         if [ -n "${modules_conf_obsoletes[$index]}" ]; then
  811.         for obsolete_module in ${modules_conf_obsoletes[$index]//,/ }; do
  812.             sed "s/\(alias ${modules_conf_alias_type[$index]}[0-9]*\) $obsolete_module$/\1 ${dest_module_name[$index]}/g" $moduleconfig > $temp_dir_name/moduleconfig.new
  813.             if ! diff $moduleconfig $temp_dir_name/moduleconfig.new >/dev/null 2>&1; then
  814.             cp -fp $temp_dir_name/moduleconfig.new $moduleconfig 2>/dev/null
  815.             rm -f $temp_dir_name/moduleconfig.new 2>/dev/null
  816.             echo $"$moduleconfig: obsolete alias '$obsolete_module' changed to '${dest_module_name[$index]}'"
  817.             fi
  818.                     if [ -e /etc/sysconfig/kernel ]; then
  819.                        sed -e "s/\(INITRD_MODULES.*\)$obsolete_module\b\(.*\)/\1${dest_module_name[$index]}\2/" /etc/sysconfig/kernel > $temp_dir_name/kernel.new
  820.                        if ! diff $temp_dir_name/kernel.new /etc/sysconfig/kernel >/dev/null 2>&1; then
  821.                            cp -fp $temp_dir_name/kernel.new /etc/sysconfig/kernel 2>/dev/null
  822.                            rm -f $temp_dir_name/kernel.new 2>/dev/null
  823.                            echo $"/etc/sysconfig/kernel: obsolete alias '$obsolete_module' changed to '${dest_module_name[$index]}'"
  824.                        fi
  825.                     fi
  826.         done
  827.         fi
  828.  
  829.         # Only add it if it can't be found already in config file
  830.         if [ -n "${modules_conf_alias_type[$index]}" ] && \
  831.            ! grep -qs "alias ${modules_conf_alias_type[$index]}[0-9]* ${dest_module_name[$index]}\b" $moduleconfig && \
  832.            [ "${modules_conf_obsolete_only[$index]}" != "yes" ]; then
  833.             if [ "$modconfig_files" == "/etc/modprobe.d/$package_name.conf" ] && \
  834.             [ ! -e /etc/modprobe.d/$package_name.conf ]; then
  835.             touch /etc/modprobe.d/$package_name.conf
  836.             echo $"created /etc/modprobe.d/$package_name.conf.">&2
  837.         fi
  838.         aliases=$(awk "/^alias ${modules_conf_alias_type[$index]}/ {print \$2}" $moduleconfig)
  839.         if [ -n "$aliases" ]; then
  840.             alias_number=$(($(echo "$aliases" | sed "s/${modules_conf_alias_type[$index]}//" | sort -n | tail -n 1) + 1))
  841.         else
  842.             alias_number=0
  843.         fi
  844.         echo -e "alias ${modules_conf_alias_type[$index]}${alias_number} ${dest_module_name[$index]}" >> $moduleconfig
  845.         echo $"$moduleconfig: added alias reference for '${dest_module_name[$index]}'"
  846.         fi
  847.  
  848.         index=$(($index+1))
  849.  
  850.     done
  851.  
  852.         # Add anything else
  853.     index=0
  854.     while [ $index -lt ${#modules_conf_array[@]} ]; do
  855.         if [ -n "${modules_conf_array[$index]}" ] && \
  856.         ! grep -q "${modules_conf_array[$index]}" "$moduleconfig"; then
  857.         echo -e $"$moduleconfig: added '${modules_conf_array[$index]}'"
  858.         echo -e "${modules_conf_array[$index]}" >> $moduleconfig
  859.         fi
  860.         index=$(($index+1))
  861.     done
  862.     done
  863.  
  864.     # Delete the temp dir
  865.     rm -rf $temp_dir_name
  866. }
  867.  
  868.  
  869. function moduleconfig_remove ()
  870. {
  871.     # $1 = kernel version
  872.  
  873.     local temp_dir_name=`mktemp -d $tmp_location/dkms.XXXXXX`
  874.     modconfig_files=""
  875.     [ -e /etc/modprobe.d/dkms.conf ] && modconfig_files="/etc/modprobe.d/dkms.conf"
  876.     [ -e /etc/modprobe.d/dkms ] && modconfig_files="/etc/modprobe.d/dkms"
  877.     [ -e /etc/modules.conf ] && modconfig_files="$modconfig_files /etc/modules.conf"
  878.     [ -e /etc/modprobe.conf ] && modconfig_files="$modconfig_files /etc/modprobe.conf"
  879.     [ -e /etc/modprobe.d/$package_name.conf ] && modconfig_files="/etc/modprobe.d/$package_name.conf"
  880.  
  881.     for moduleconfig in $modconfig_files; do
  882.     index=0
  883.     while [ $index -lt ${#dest_module_name[@]} ]; do
  884.  
  885.     # Remove/Replace aliases (maybe)
  886.         if [ -n "${modules_conf_alias_type[$index]}" ] && [ `find $install_tree/$1/ -name "${dest_module_name[$index]}.*" 2>/dev/null | wc -l | awk '{print $1}'` -eq 0 ]; then
  887.  
  888.         local conf_replacement=""
  889.         for obsolete_module in ${modules_conf_obsoletes[$index]//,/ }; do
  890.             if [ `find $install_tree/$1/ -name "$obsolete_module.*" 2>/dev/null | wc -l | awk '{print $1}'` -gt 0 ] && [ -z "$conf_replacement" ]; then
  891.             conf_replacement=$obsolete_module
  892.             fi
  893.         done
  894.  
  895.         if [ -n "$conf_replacement" ] && \
  896.             grep -q "alias ${modules_conf_alias_type[$index]}[0-9]* ${dest_module_name[$index]}$" $moduleconfig; then
  897.             sed "s/\(alias ${modules_conf_alias_type[$index]}[0-9]*\) ${dest_module_name[$index]}$/\1 $conf_replacement/g" $moduleconfig > $temp_dir_name/moduleconfig.new
  898.             mv -f $temp_dir_name/moduleconfig.new $moduleconfig
  899.             echo $"$moduleconfig: alias for '${dest_module_name[$index]}' changed back to '$conf_replacement'"
  900.         elif [ -z "$conf_replacement" ]; then
  901.             grep -v "alias ${modules_conf_alias_type[$index]}[0-9]* ${dest_module_name[$index]}" $moduleconfig > $temp_dir_name/moduleconfig.new
  902.             mv -f $temp_dir_name/moduleconfig.new $moduleconfig
  903.             echo $"$moduleconfig: removed alias for '${dest_module_name[$index]}'"
  904.             if [ "$modconfig_files" == "/etc/modprobe.d/$package_name.conf" ]; then
  905.                 rm -f /etc/modprobe.d/$package_name.conf
  906.                 echo $"$moduleconfig: deleted /etc/modprobe.d/$package_name.conf file"
  907.             fi
  908.  
  909.         fi
  910.         fi
  911.  
  912.         index=$(($index+1))
  913.     done
  914.  
  915.         # Remove static conf entries
  916.     index=0
  917.     while [ $index -lt ${#modules_conf_array[@]} ]; do
  918.         if [ -n "${modules_conf_array[$index]}" ]; then
  919.         grep -v "${modules_conf_array[$index]}" "$moduleconfig" > $temp_dir_name/moduleconfig.new
  920.         echo $"$moduleconfig: removed '${modules_conf_array[$index]}'"
  921.         mv -f $temp_dir_name/moduleconfig.new $moduleconfig
  922.         fi
  923.         index=$(($index+1))
  924.     done
  925.     done
  926.  
  927.     # Delete the temp dir
  928.     rm -rf $temp_dir_name
  929. }
  930.  
  931. # Does string word exist as a word in string list?
  932. # returns 0 if word present, 1 if word not present
  933. function is_word_in_list ()
  934. {
  935.     for l in $2; do
  936.     [ "$1" = "${l}" ] && return 0
  937.     done
  938.     return 1
  939. }
  940.  
  941. function etc_sysconfig_kernel_modify ()
  942. {
  943.     # Make a temp directory to store files
  944.     local temp_dir_name=`mktemp -d $tmp_location/dkms.XXXXXX`
  945.  
  946.     if [ -e "/etc/sysconfig/kernel" ] && [ -n "$remake_initrd" ]; then
  947.         # Make /etc/sysconfig/kernel changes as necessary
  948.     if [ "$1" == "add" ]; then
  949.         unset INITRD_MODULES
  950.         eval `grep ^INITRD_MODULES= /etc/sysconfig/kernel`
  951.         for module_name_after in "${dest_module_name[@]}"; do
  952.         if ! is_word_in_list "${module_name_after}" "${INITRD_MODULES}"; then
  953.             sed -e "s/INITRD_MODULES=\"\(.*\)\"/INITRD_MODULES=\"\1 $module_name_after\"/" /etc/sysconfig/kernel > $temp_dir_name/kernel.new
  954.             mv $temp_dir_name/kernel.new /etc/sysconfig/kernel
  955.         fi
  956.         done
  957.         unset INITRD_MODULES
  958.  
  959.         # Remove /etc/sysconfig/kernel entries
  960.     elif [ "$1" == "delete" ]; then
  961.         for module_name_after in "${dest_module_name[@]}"; do
  962.         sed -e "s/\(INITRD_MODULES.*\)$module_name_after\b\(.*\)/\1\2/" /etc/sysconfig/kernel > $temp_dir_name/kernel.new
  963.         mv $temp_dir_name/kernel.new /etc/sysconfig/kernel
  964.         done
  965.     fi
  966.     fi
  967.  
  968.     # Delete the temp dir
  969.     rm -rf $temp_dir_name
  970. }
  971.  
  972. function add_module ()
  973. {
  974.     setup_kernels_arches "add"
  975.  
  976.     # Check that we have all the arguments
  977.     if [ -z "$module" ] || [ -z "$module_version" ]; then
  978.     echo $"" >&2
  979.     echo $"Error! Invalid number of arguments passed." >&2
  980.     echo $"Usage: add -m <module> -v <module-version>" >&2
  981.     exit 1
  982.     fi
  983.  
  984.     if [ -z "$conf" ]; then
  985.     conf="$source_tree/$module-$module_version/dkms.conf"
  986.     fi
  987.  
  988.     # Check that /usr/src/$module-$module_version exists
  989.     if ! [ -d "$source_tree/$module-$module_version" ]; then
  990.     echo $"" >&2
  991.     echo $"Error! Could not find module source directory." >&2
  992.     echo $"Directory: $source_tree/$module-$module_version does not exist." >&2
  993.     exit 2
  994.     fi
  995.  
  996.     # Do stuff for --rpm_safe_upgrade
  997.     if [ -n "$rpm_safe_upgrade" ]; then
  998.     local pppid=`sed -ne 's/PPid:[ \t]*//p' /proc/$PPID/status`
  999.     local temp_dir_name=`mktemp $tmp_location/dkms_rpm_safe_upgrade_lock.$pppid.XXXXXX 2>/dev/null`
  1000.     echo "$module-$module_version" >> $temp_dir_name
  1001.     ps -o lstart --no-headers -p $pppid 2>/dev/null >> $temp_dir_name
  1002.     fi
  1003.  
  1004.     # Check that this module-version hasn't already been added
  1005.     if [ -d "$dkms_tree/$module/$module_version" ]; then
  1006.     echo $"" >&2
  1007.     echo $"Error! DKMS tree already contains: $module-$module_version" >&2
  1008.     echo $"You cannot add the same module/version combo more than once." >&2
  1009.     exit 3
  1010.     fi
  1011.  
  1012.     # Check that the conf file exists or any other script specified
  1013.     if ! [ -e "$conf" ]; then
  1014.     echo $"" >&2
  1015.     echo $"Error! Could not locate dkms.conf file." >&2
  1016.     echo $"File: $conf does not exist." >&2
  1017.     exit 4
  1018.     fi
  1019.  
  1020.     # Check the conf file for sanity
  1021.     read_conf "${kernelver_array[0]}" "${arch_array[0]}" "$conf"
  1022.     if [ "$?" -ne 0 ]; then
  1023.     echo $"" >&2
  1024.     echo $"Error! Bad conf file." >&2
  1025.     echo $"File: $conf" >&2
  1026.     echo $"does not represent a valid dkms.conf file." >&2
  1027.     exit 8
  1028.     fi
  1029.  
  1030.     # Create the necessary dkms tree structure
  1031.     echo $""
  1032.     echo $"Creating symlink $dkms_tree/$module/$module_version/source ->"
  1033.     echo $"                 $source_tree/$module-$module_version"
  1034.     mkdir -p "$dkms_tree/$module/$module_version/build"
  1035.     ln -s "$source_tree/$module-$module_version" "$dkms_tree/$module/$module_version/source"
  1036.  
  1037.     # Run the post_add script
  1038.     if [ -n "$post_add" ] && [ -x `echo "$dkms_tree/$module/$module_version/source/$post_add" | sed 's/ .*//'` ]; then
  1039.     echo $""
  1040.     echo $"Running the post_add script:"
  1041.     $dkms_tree/$module/$module_version/source/$post_add
  1042.     fi
  1043.  
  1044.     echo $""
  1045.     echo $"DKMS: add Completed."
  1046. }
  1047.  
  1048. function prepare_kernel()
  1049. {
  1050.     # $1 = kernel version to prepare
  1051.     # $2 = arch to prepare
  1052.  
  1053.     set_kernel_source_dir "$1"
  1054.  
  1055.     # Check that kernel-source exists
  1056.     if ! [ -e "$kernel_source_dir/include" ]; then
  1057.     echo $"" >&2
  1058.     echo $"Error! Your kernel source for kernel $1 cannot be found at" >&2
  1059.     echo $"/lib/modules/$1/build or /lib/modules/$1/source." >&2
  1060.     echo $"You can use the --kernelsourcedir option to tell DKMS where it's located."
  1061.     exit 1
  1062.     fi
  1063.  
  1064.     if [ -n "$no_prepare_kernel" ]; then
  1065.     return
  1066.     fi
  1067.  
  1068.     if [[ (! ( $(VER $1) < $(VER 2.6.5) ) || (-d /etc/SuSEconfig)) && \
  1069.        -d "$kernel_source_dir" && \
  1070.        -z "$ksourcedir_fromcli" ]]; then
  1071.     echo $""
  1072.     echo $"Kernel preparation unnecessary for this kernel.  Skipping..."
  1073.     no_clean_kernel="no-clean-kernel"
  1074.     return 1
  1075.     fi
  1076.  
  1077.     # Prepare kernel for module build
  1078.     echo $""
  1079.     echo $"Preparing kernel $1 for module build:"
  1080.     echo $"(This is not compiling a kernel, just preparing kernel symbols)"
  1081.     cd $kernel_source_dir
  1082.     config_contents=`cat .config 2>/dev/null`
  1083.     [ -n "$config_contents" ] && echo $"Storing current .config to be restored when complete"
  1084.  
  1085.     # Set kernel_config
  1086.     if [ -e /etc/redhat-release ] || [ -e /etc/fedora-release ]; then
  1087.     # Note this also applies to VMware 3.x
  1088.     if [ -z "$kernel_config" ] && [ -d "$kernel_source_dir/configs" ]; then
  1089.         local kernel_trunc=`echo $1 | sed 's/-.*//'`
  1090.         for config_type in debug summit smp enterprise bigmem hugemem BOOT vmnix; do
  1091.         [ `echo "$1" | grep "$config_type"` ] && kernel_config="$kernel_source_dir/configs/kernel-$kernel_trunc-$2-$config_type.config"
  1092.         [ ! -e "$kernel_config" ] && kernel_config=""
  1093.         done
  1094.         [ -z "$kernel_config" ] && kernel_config="$kernel_source_dir/configs/kernel-$kernel_trunc-$2.config"
  1095.         [ ! -e "$kernel_config" ] && kernel_config=""
  1096.     fi
  1097.     elif [ -e /etc/SuSE-release ] || [ -d /etc/SuSEconfig ]; then
  1098.         if [ -z "$kernel_config" ] && [ -d "$kernel_source_dir/arch" ]; then
  1099.              local kernel_trunc=`echo $1 | sed 's/-.*//'`
  1100.             if [ "$2" == "i586" ] || [ "$2" == "i686" ]; then
  1101.                 config_arch="i386"
  1102.             else
  1103.                 config_arch=$2
  1104.             fi
  1105.         for config_type in default smp bigsmp; do
  1106.             [ `echo "$1" | grep "$config_type"` ] && kernel_config="$kernel_source_dir/arch/$config_arch/defconfig.$config_type"
  1107.             [ ! -e "$kernel_config" ] && kernel_config=""
  1108.         done
  1109.         [ -z "$kernel_config" ] && kernel_config="$kernel_source_dir/arch/$config_arch/defconfig.default"
  1110.         [ ! -e "$kernel_config" ] && kernel_config=""
  1111.         fi
  1112.     fi
  1113.  
  1114.     # Do preparation
  1115.     if [ -e /boot/vmlinuz.version.h ]; then
  1116.     echo $"Running UnitedLinux preparation routine"
  1117.     local kernel_config="/boot/vmlinuz.config"
  1118.     invoke_command "make mrproper" "make mrproper" background
  1119.     [ -n "$config_contents" ] && echo "$config_contents" > .config
  1120.     invoke_command "cp /boot/vmlinuz.version.h include/linux/version.h" "using /boot/vmlinux.version.h"
  1121.     invoke_command "cp -f $kernel_config .config" "using $kernel_config"
  1122.     invoke_command "make KERNELRELEASE=$1 cloneconfig" "make cloneconfig" background
  1123.     invoke_command "make CONFIG_MODVERSIONS=1 KERNELRELEASE=$1 dep" "make CONFIG_MODVERSIONS=1 dep" background
  1124.     elif grep -q rhconfig.h $kernel_source_dir/include/linux/{modversions,version}.h 2>/dev/null; then
  1125.     echo $"Running Red Hat style preparation routine"
  1126.     invoke_command "make clean" "make clean" background
  1127.     [ -n "$config_contents" ] && echo "$config_contents" > .config
  1128.  
  1129.     if [ -n "$kernel_config" ]; then
  1130.         echo $"using $kernel_config"
  1131.         cp -f "$kernel_config" .config
  1132.     elif [ -e .config ]; then
  1133.         echo $"using $kernel_source_dir/.config"
  1134.         echo $"(I hope this is the correct config for this kernel)"
  1135.     else
  1136.         echo $""
  1137.         echo $"Warning! Cannot find a .config file to prepare your kernel with." >&2
  1138.         echo $"Try using the --config option to specify where one can be found." >&2
  1139.         echo $"Your build will likely fail because of this." >&2
  1140.     fi
  1141.  
  1142.     # Hack to workaround broken tmp_include_depends for Red Hat
  1143.     if grep -q "/usr/src/build" $kernel_source_dir/tmp_include_depends 2>/dev/null; then
  1144.         sed 's/\/usr\/src\/build\/.*\/install//g' $kernel_source_dir/tmp_include_depends > $kernel_source_dir/tmp_include_depends.new
  1145.         mv -f $kernel_source_dir/tmp_include_depends.new $kernel_source_dir/tmp_include_depends
  1146.     fi
  1147.  
  1148.     invoke_command "make KERNELRELEASE=$1 oldconfig" "make oldconfig" background
  1149.     kerneldoth_contents=`cat /boot/kernel.h 2>/dev/null`
  1150.     invoke_command "/usr/lib/dkms/mkkerneldoth --kernelver $1 --targetarch $2 --output /boot/kernel.h" "running mkkerneldoth" background
  1151.     else
  1152.     echo $"Running Generic preparation routine"
  1153.     invoke_command "make mrproper" "make mrproper" background
  1154.     [ -n "$config_contents" ] && echo "$config_contents" > .config
  1155.  
  1156.     if [ -n "$kernel_config" ]; then
  1157.         echo $"using $kernel_config"
  1158.         cp -f "$kernel_config" .config
  1159.     elif [ -e .config ]; then
  1160.         echo $"using $kernel_source_dir/.config"
  1161.         echo $"(I hope this is the correct config for this kernel)"
  1162.     else
  1163.         echo $""
  1164.         echo $"Warning! Cannot find a .config file to prepare your kernel with." >&2
  1165.         echo $"Try using the --config option to specify where one can be found." >&2
  1166.         echo $"Your build will likely fail because of this." >&2
  1167.     fi
  1168.  
  1169.     invoke_command "make KERNELRELEASE=$1 oldconfig" "make oldconfig" background
  1170.     if [[ $(VER $1) < $(VER 2.5) ]]; then
  1171.         invoke_command "make KERNELRELEASE=$1 dep" "make dep" background
  1172.     else
  1173.         invoke_command "make KERNELRELEASE=$1 prepare-all scripts" "make prepare-all" background
  1174.     fi
  1175.     fi
  1176.     cd - >/dev/null
  1177. }
  1178.  
  1179. function list_each_installed_module ()
  1180. {
  1181.     # $1 = module
  1182.     # $2 = kernel version
  1183.     # $3 = arch
  1184.     local count=0
  1185.     local real_dest_module_location
  1186.     while [ "$count" -lt "${#built_module_name[@]}" ]; do
  1187.     real_dest_module_location="$(find_actual_dest_module_location $1 $count $2 $3)"
  1188.     echo "$install_tree/$2${real_dest_module_location}/${dest_module_name[$count]}$module_suffix"
  1189.     count=$(($count + 1))
  1190.     done
  1191. }
  1192.  
  1193. function set_weak_modules()
  1194. {
  1195.     [ -n "${weak_modules}" ] && return
  1196.     [ -x /sbin/weak-modules ] && weak_modules='/sbin/weak-modules'
  1197.     [ -x /usr/lib/module-init-tools/weak-modules ] && weak_modules='/usr/lib/module-init-tools/weak-modules'
  1198. }
  1199.  
  1200. function install_module()
  1201. {
  1202.     setup_kernels_arches "install"
  1203.     local base_dir="$dkms_tree/$module/$module_version/${kernelver_array[0]}/${arch_array[0]}"
  1204.  
  1205.     # Check that the right arguments were passed
  1206.     if [ -z "$module" ] || [ -z "$module_version" ]; then
  1207.     echo $"" >&2
  1208.     echo $"Error! Invalid number of parameters passed." >&2
  1209.     echo $"Usage: install -m <module> -v <module-version>" >&2
  1210.     exit 1
  1211.     fi
  1212.  
  1213.     # Check that $module-$module_version exists by checking the source symlink
  1214.     if ! [ -d "$dkms_tree/$module/$module_version/source" ]; then
  1215.     echo $"" >&2
  1216.     echo $"Error! DKMS tree does not contain: $module-$module_version" >&2
  1217.     echo $"Build cannot continue without the proper tree." >&2
  1218.     exit 2
  1219.     fi
  1220.  
  1221.     # Make sure that kernel exists to install into
  1222.     if ! [ -e "$install_tree/${kernelver_array[0]}" ]; then
  1223.     echo $"" >&2
  1224.     echo $"Error! The directory $install_tree/${kernelver_array[0]} doesn't exist." >&2
  1225.     echo $"You cannot install a module onto a non-existant kernel." >&2
  1226.     exit 6
  1227.     fi
  1228.  
  1229.     # Read the conf file
  1230.     read_conf "${kernelver_array[0]}" "${arch_array[0]}"
  1231.     if [ "$?" -ne 0 ]; then
  1232.     echo $"" >&2
  1233.     echo $"Error! Bad conf file." >&2
  1234.     echo $"Your dkms.conf is not valid." >&2
  1235.     exit 3
  1236.     fi
  1237.  
  1238.     # Make sure the $module_name_after exists
  1239.     set_module_suffix "${kernelver_array[0]}"
  1240.     for module_name_after in "${dest_module_name[@]}"; do
  1241.     if ! [ -e "$base_dir/module/$module_name_after$module_suffix" ]; then
  1242.         echo $"" >&2
  1243.         echo $"Error! Could not locate $module_name_after$module_suffix for module $module in the DKMS tree." >&2
  1244.         echo $"You must run a dkms build for kernel ${kernelver_array[0]} (${arch_array[0]}) first." >&2
  1245.         exit 4
  1246.     fi
  1247.     done
  1248.  
  1249.     # Check that its not already installed (kernel symlink)
  1250.     readlink "$dkms_tree/$module/kernel-${kernelver_array[0]}-${arch_array[0]}"
  1251.     kernel_symlink="$read_link"
  1252.     if [ "$kernel_symlink" == "$module_version/${kernelver_array[0]}/${arch_array[0]}" ]; then
  1253.     echo $"" >&2
  1254.     echo $"Error! This module/version combo is already installed" >&2
  1255.     echo $"for kernel: ${kernelver_array[0]} (${arch_array[0]})" >&2
  1256.     exit 5
  1257.     fi
  1258.  
  1259.     # if upgrading using rpm_safe_upgrade, go ahead and force the install
  1260.     # else we can wind up with the first half of an upgrade failing to install anything,
  1261.     # while the second half of the upgrade, the removal, then succeeds, leaving us with
  1262.     # nothing installed.
  1263.     if [ -n "$rpm_safe_upgrade" ]; then
  1264.     force="true"
  1265.     fi
  1266.  
  1267.     # Save the original_module if one exists, none have been saved before, and this is the first module for this kernel
  1268.     local lib_tree="$install_tree/${kernelver_array[0]}"
  1269.     local count=0
  1270.     while [ "$count" -lt ${#built_module_name[@]} ]; do
  1271.     echo $""
  1272.     echo $"${dest_module_name[$count]}$module_suffix:"
  1273.     # Check this version against what is already in the kernel
  1274.     if ! check_version_sanity "${kernelver_array[0]}" "${arch_array[0]}" "$obsolete_by" "${dest_module_name[$count]}"; then
  1275.         count=$(($count + 1))
  1276.         continue
  1277.     fi
  1278.  
  1279.     if [ "$count" -eq 0 ]; then
  1280.         # Run the pre_install script
  1281.         if [ -n "$pre_install" ] && [ -x `echo "$dkms_tree/$module/$module_version/source/$pre_install" | sed 's/ .*//'` ]; then
  1282.         echo $""
  1283.         echo $"Running the pre_install script:"
  1284.         $dkms_tree/$module/$module_version/source/$pre_install
  1285.         if [ "$?" -ne 0 -a -z "$force" ]; then
  1286.             echo $"pre_install failed, aborting install." >&2
  1287.             echo $"You may override by specifying --force." >&2
  1288.             exit 101
  1289.         fi
  1290.         fi
  1291.     fi
  1292.     local module_count=`find $lib_tree -name ${dest_module_name[$count]}$module_suffix -type f | wc -l | awk {'print $1'}`
  1293.     echo $" - Original module"
  1294.     if ! [ -L "$dkms_tree/$module/kernel-${kernelver_array[0]}-${arch_array[0]}" ]; then
  1295.         local archive_pref1="$lib_tree/extra/${dest_module_name[$count]}$module_suffix"
  1296.         local archive_pref2="$lib_tree/updates/${dest_module_name[$count]}$module_suffix"
  1297.         local archive_pref3="$lib_tree${dest_module_location[$count]}/${dest_module_name[$count]}$module_suffix"
  1298.         local archive_pref4=""
  1299.         [ "$module_count" -eq 1 ] && archive_pref4="`find $lib_tree -name ${dest_module_name[$count]}$module_suffix -type f`"
  1300.         local original_module=""
  1301.         local found_orginal=""
  1302.         for original_module in $archive_pref1 $archive_pref2 $archive_pref3 $archive_pref4; do
  1303.         if [ -f "$original_module" ]; then
  1304.             case "$running_distribution" in
  1305.                 Debian* | Ubuntu* ) ;;
  1306.                 *)
  1307.                 echo $"   - Found $original_module"
  1308.                 echo $"   - Storing in $dkms_tree/$module/original_module/${kernelver_array[0]}/${arch_array[0]}/"
  1309.                 echo $"   - Archiving for uninstallation purposes"
  1310.                 mkdir -p "$dkms_tree/$module/original_module/${kernelver_array[0]}/${arch_array[0]}"
  1311.                 mv -f "$original_module" "$dkms_tree/$module/original_module/${kernelver_array[0]}/${arch_array[0]}/"
  1312.                 ;;
  1313.             esac
  1314.             found_original="yes"
  1315.             break
  1316.         fi
  1317.         done
  1318.         if [ -z "$found_original" ] && [ "$module_count" -gt 1 ]; then
  1319.         echo $"   - Multiple original modules exist but DKMS does not know which to pick"
  1320.         echo $"   - Due to the confusion, none will be considered during a later uninstall"
  1321.         elif [ -z "$found_original" ]; then
  1322.         echo $"   - No original module exists within this kernel"
  1323.         fi
  1324.     elif [ -L "$dkms_tree/$module/kernel-${kernelver_array[0]}-${arch_array[0]}" ] && [ -e "$dkms_tree/$module/original_module/${kernelver_array[0]}/${arch_array[0]}/${dest_module_name[$count]}$module_suffix" ]; then
  1325.         echo $"   - An original module was already stored during a previous install"
  1326.     else
  1327.         echo $"   - This kernel never originally had a module by this name"
  1328.     fi
  1329.  
  1330.     if [ "$module_count" -gt 1 ]; then
  1331.         echo $" - Multiple same named modules!"
  1332.         echo $"   - $module_count named ${dest_module_name[$count]}$module_suffix in $lib_tree/"
  1333.         case "$running_distribution" in
  1334.             Debian* | Ubuntu* ) ;;
  1335.             *)
  1336.             echo $"   - All instances of this module will now be stored for reference purposes ONLY"
  1337.             echo $"   - Storing in $dkms_tree/$module/original_module/${kernelver_array[0]}/${arch_array[0]}/collisions/"
  1338.             ;;
  1339.         esac
  1340.         for module_dup in `find $lib_tree -name ${dest_module_name[$count]}$module_suffix -type f`; do
  1341.         dup_tree=`echo $module_dup | sed "s#^$lib_tree##" | sed "s#${dest_module_name[$count]}$module_suffix##"`
  1342.         case "$running_distribution" in
  1343.             Debian* | Ubuntu* ) ;;
  1344.             *)
  1345.                echo $"     - Stored $module_dup"
  1346.                mkdir -p "$dkms_tree/$module/original_module/${kernelver_array[0]}/${arch_array[0]}/collisions/$dup_tree"
  1347.                mv -f $module_dup "$dkms_tree/$module/original_module/${kernelver_array[0]}/${arch_array[0]}/collisions/$dup_tree"
  1348.                ;;
  1349.            esac
  1350.         done
  1351.     fi
  1352.  
  1353.         # Copy module to its location
  1354.     echo $" - Installation"
  1355.      echo $"   - Installing to $install_tree/${kernelver_array[0]}${dest_module_location[$count]}/"
  1356.     mkdir -p $install_tree/${kernelver_array[0]}${dest_module_location[$count]}
  1357.     cp -f "$base_dir/module/${dest_module_name[$count]}$module_suffix" "$install_tree/${kernelver_array[0]}${dest_module_location[$count]}/${dest_module_name[$count]}$module_suffix"
  1358.  
  1359.     count=$(($count + 1))
  1360.     done
  1361.  
  1362.     # Create the kernel-<kernelver> symlink to designate this version as active
  1363.     rm -f "$dkms_tree/$module/kernel-${kernelver_array[0]}-${arch_array[0]}" 2>/dev/null
  1364.     ln -s "$module_version/${kernelver_array[0]}/${arch_array[0]}" "$dkms_tree/$module/kernel-${kernelver_array[0]}-${arch_array[0]}" 2>/dev/null
  1365.  
  1366.     # add to kabi-tracking
  1367.     set_weak_modules
  1368.     if [ -n "${weak_modules}" ]; then
  1369.     echo $"Adding any weak-modules"
  1370.     list_each_installed_module "$module" "${kernelver_array[0]}" "${arch_array[0]}" | ${weak_modules} --add-modules
  1371.     fi
  1372.  
  1373.     # Run the post_install script
  1374.     if [ -n "$post_install" ] && [ -x `echo "$dkms_tree/$module/$module_version/source/$post_install" | sed 's/ .*//'` ]; then
  1375.     echo $""
  1376.     echo $"Running post_install:"
  1377.     $dkms_tree/$module/$module_version/source/$post_install
  1378.     fi
  1379.  
  1380.     # Make modules.conf changes as necessary
  1381.     echo $""
  1382.     moduleconfig_add "${kernelver_array[0]}"
  1383.     etc_sysconfig_kernel_modify "add"
  1384.  
  1385.     invoke_command "do_depmod ${kernelver_array[0]}" "depmod" background
  1386.     if [ "$?" -ne 0 ]; then
  1387.     local unresolved_symbols="$(do_depmod ${kernelver_array[0]} 2>&1)"
  1388.     local count=0
  1389.     while [ "$count" -lt "${#built_module_name[@]}" ]; do
  1390.         if echo "$unresolved_symbols" | grep -q "${dest_module_name[$count]}$module_suffix$"; then
  1391.         echo $""
  1392.         echo $"Problems with depmod detected.  Automatically uninstalling this module."
  1393.         sleep 2
  1394.         do_uninstall "${kernelver_array[0]}" "${arch_array[0]}"
  1395.         echo $""
  1396.         echo $"DKMS: Install Failed (depmod problems).  Module rolled back to built state."
  1397.         exit 6
  1398.         fi
  1399.         count=$(($count + 1))
  1400.     done
  1401.     fi
  1402.  
  1403.     # Do remake_initrd things (save old initrd)
  1404.     if [ -n "$remake_initrd" ]; then
  1405.     remake_initrd "${kernelver_array[0]}" "${arch_array[0]}"
  1406.     if [ "$?" -ne 0 ]; then
  1407.         echo $"Problems with mkinitrd detected.  Automatically uninstalling this module."
  1408.         sleep 2
  1409.         do_uninstall "${kernelver_array[0]}" "${arch_array[0]}"
  1410.         echo $""
  1411.         echo $"DKMS: Install Failed (mkinitrd problems).  Module rolled back to built state."
  1412.         exit 7
  1413.     fi
  1414.     fi
  1415.  
  1416.     echo $""
  1417.     echo $"DKMS: install Completed."
  1418. }
  1419.  
  1420.  
  1421. function prepare_build()
  1422. {
  1423.     setup_kernels_arches "build"
  1424.     set_kernel_source_dir "${kernelver_array[0]}"
  1425.     local base_dir="$dkms_tree/$module/$module_version/${kernelver_array[0]}/${arch_array[0]}"
  1426.  
  1427.     # Check that the right arguments were passed
  1428.     if [ -z "$module" ] || [ -z "$module_version" ]; then
  1429.     echo $"" >&2
  1430.     echo $"Error! Invalid number of parameters passed." >&2
  1431.     echo $"Usage: build -m <module> -v <module-version>" >&2
  1432.     exit 1
  1433.     fi
  1434.  
  1435.     # Check that source symlink works
  1436.     if ! [ -d "$dkms_tree/$module/$module_version/source" ]; then
  1437.     echo $"" >&2
  1438.     echo $"Error! DKMS tree does not contain: $module-$module_version" >&2
  1439.     echo $"Build cannot continue without the proper tree." >&2
  1440.     exit 2
  1441.     fi
  1442.  
  1443.     # Check that the module has not already been built for this kernel
  1444.     if [ -d "$base_dir" ]; then
  1445.     echo $"" >&2
  1446.     echo $"Error! This module/version has already been built on: ${kernelver_array[0]}" >&2
  1447.     echo $"Directory: $base_dir" >&2
  1448.     echo $"already exists.  Use the dkms remove function before trying to build again." >&2
  1449.     exit 3
  1450.     fi
  1451.  
  1452.     # Read the conf file
  1453.     set_module_suffix "${kernelver_array[0]}"
  1454.     read_conf "${kernelver_array[0]}" "${arch_array[0]}"
  1455.     if [ "$?" -ne 0 ]; then
  1456.     echo $"" >&2
  1457.     echo $"Error! Bad conf file." >&2
  1458.     echo $"Your dkms.conf is not valid." >&2
  1459.     exit 4
  1460.     fi
  1461.  
  1462.     # Error out if build_exclude is set
  1463.     if [ -n "$build_exclude" ]; then
  1464.     echo "" >&2
  1465.     echo "Error!  The dkms.conf for this module includes a BUILD_EXCLUSIVE directive which" >&2
  1466.     echo "does not match this kernel/arch.  This indicates that it should not be built." >&2
  1467.     exit 9
  1468.     fi
  1469.  
  1470.     # Error out if source_tree is basically empty (binary-only dkms tarball w/ --force check)
  1471.     if [ `ls $dkms_tree/$module/$module_version/source | wc -l | awk {'print $1'}` -lt 2 ]; then
  1472.     echo "" >&2
  1473.     echo $"Error! The directory $dkms_tree/$module/$module_version/source/" >&2
  1474.     echo $"does not appear to have module source located within it.  Build halted." >&2
  1475.     exit 8
  1476.     fi
  1477.  
  1478.     prepare_kernel "${kernelver_array[0]}" "${arch_array[0]}"
  1479.  
  1480.     # Set up temporary build directory for build
  1481.     rm -rf "$dkms_tree/$module/$module_version/build"
  1482.     cp -rf "$dkms_tree/$module/$module_version/source/" "$dkms_tree/$module/$module_version/build"
  1483.  
  1484.     # Run the pre_build script
  1485.     if [ -n "$pre_build" ] && [ -x `echo "$dkms_tree/$module/$module_version/source/$pre_build" | sed 's/ .*//'` ]; then
  1486.     echo $""
  1487.     echo $"Running the pre_build script:"
  1488.     $dkms_tree/$module/$module_version/source/$pre_build
  1489.     fi
  1490.  
  1491.     cd "$dkms_tree/$module/$module_version/build"
  1492.  
  1493.     # Apply any patches
  1494.     local index=0
  1495.     while [ $index -lt ${#patch_array[@]} ]; do
  1496.     if ! [ -e "$dkms_tree/$module/$module_version/build/patches/${patch_array[$index]}" ]; then
  1497.         echo $"" >&2
  1498.         echo $"Error!  Patch ${patch_array[$index]} as specified in dkms.conf cannot be" >&2
  1499.         echo $"found in $dkms_tree/$module/$module_version/build/patches/." >&2
  1500.         exit 5
  1501.     fi
  1502.     invoke_command "patch -p1 < ./patches/${patch_array[$index]}" "applying patch ${patch_array[$index]}"
  1503.     if [ "$?" -ne 0 ]; then
  1504.         echo $"" >&2
  1505.         echo $"Error! Application of patch ${patch_array[$index]} failed." >&2
  1506.         echo $"Check $dkms_tree/$module/$module_version/build/ for more information." >&2
  1507.         exit 6
  1508.     fi
  1509.     index=$(($index+1))
  1510.     done
  1511. }
  1512.  
  1513. function do_build()
  1514. {
  1515.     local base_dir="$dkms_tree/$module/$module_version/${kernelver_array[0]}/${arch_array[0]}"
  1516.     echo $""
  1517.     echo $"Building module:"
  1518.  
  1519.     invoke_command "$clean" "cleaning build area" background
  1520.     echo $"DKMS make.log for $module-$module_version for kernel ${kernelver_array[0]} (${arch_array[0]})" >> "$dkms_tree/$module/$module_version/build/make.log"
  1521.     echo $"`date`" >> "$dkms_tree/$module/$module_version/build/make.log"
  1522.     local the_make_command=`echo $make_command | sed "s/^make/make KERNELRELEASE=${kernelver_array[0]}/"`
  1523.  
  1524.     #if we're root, try to run as a user instead
  1525.     if [ "$USER" = "root" ] && getent passwd nobody 1>/dev/null && su nobody -c "/bin/true" 1>/dev/null; then
  1526.         the_make_command="su nobody -c \"$the_make_command\""
  1527.         chmod +x $dkms_tree/$module/$module_version/build
  1528.         chown -R nobody $dkms_tree/$module/$module_version/build
  1529.     fi
  1530.  
  1531.     invoke_command "$the_make_command >> $dkms_tree/$module/$module_version/build/make.log 2>&1" "$the_make_command" background
  1532.  
  1533.     # Make sure good return status
  1534.     if [ "$?" -ne 0 ]; then
  1535.     echo $"" >&2
  1536.     echo $"Error! Bad return status for module build on kernel: ${kernelver_array[0]} (${arch_array[0]})" >&2
  1537.     echo $"Consult the make.log in the build directory" >&2
  1538.     echo $"$dkms_tree/$module/$module_version/build/ for more information." >&2
  1539.     if grep -ic "gcc: Command not found" "$dkms_tree/$module/$module_version/build/make.log"; then
  1540.         echo $"" >&2
  1541.         echo $"DO YOU HAVE gcc INSTALLED???" >&2
  1542.     fi
  1543.     if grep -ic "make: command not found" "$dkms_tree/$module/$module_version/build/make.log"; then
  1544.         echo $"" >&2
  1545.         echo $"DO YOU HAVE make INSTALLED???" >&2
  1546.     fi
  1547.     exit 10
  1548.     fi
  1549.  
  1550.     # Make sure all the modules built successfully
  1551.     local count=0
  1552.     while [ "$count" -lt "${#built_module_name[@]}" ]; do
  1553.     if ! [ -e "${built_module_location[$count]}${built_module_name[$count]}$module_suffix" ]; then
  1554.         echo $"" >&2
  1555.         echo $"Error!  Build of ${built_module_name[$count]}$module_suffix failed for: ${kernelver_array[0]} (${arch_array[0]})" >&2
  1556.         echo $"Consult the make.log in the build directory" >&2
  1557.         echo $"$dkms_tree/$module/$module_version/build/ for more information." >&2
  1558.         exit 7
  1559.     fi
  1560.     count=$(($count+1))
  1561.     done
  1562.     cd - >/dev/null
  1563.  
  1564.     # Build success, so create DKMS structure for a built module
  1565.     mkdir -p "$base_dir/log"
  1566.     [ -n "$kernel_config" ] && cp -f "$kernel_config" "$base_dir/log/"
  1567.     mv -f "$dkms_tree/$module/$module_version/build/make.log" "$base_dir/log/make.log" 2>/dev/null
  1568.  
  1569.     # Save a copy of the new module
  1570.     mkdir "$base_dir/module" >/dev/null
  1571.     local count=0
  1572.     while [ "$count" -lt "${#built_module_name[@]}" ]; do
  1573.     [ "${strip[$count]}" != "no" ] && strip -g "$dkms_tree/$module/$module_version/build/${built_module_location[$count]}${built_module_name[$count]}$module_suffix"
  1574.     cp -f "$dkms_tree/$module/$module_version/build/${built_module_location[$count]}${built_module_name[$count]}$module_suffix" "$base_dir/module/${dest_module_name[$count]}$module_suffix" >/dev/null
  1575.     count=$(($count+1))
  1576.     done
  1577.  
  1578.     # Run the post_build script
  1579.     if [ -n "$post_build" ] && [ -x `echo "$dkms_tree/$module/$module_version/source/$post_build" | sed 's/ .*//'` ]; then
  1580.     echo $""
  1581.     echo $"Running the post_build script:"
  1582.     $dkms_tree/$module/$module_version/source/$post_build
  1583.     fi
  1584. }
  1585.  
  1586. function clean_build()
  1587. {
  1588.     # Run the clean commands
  1589.     cd "$dkms_tree/$module/$module_version/build"
  1590.     invoke_command "$clean" "cleaning build area" background
  1591.     cd - >/dev/null
  1592.  
  1593.     if [[ ! ( $(VER ${kernelver_array[0]}) < $(VER 2.6.6) ) && \
  1594.        -d "$kernel_source_dir" && \
  1595.        ! -h "$kernel_source_dir" && \
  1596.        -z "$ksourcedir_fromcli" ]]; then
  1597.     echo $"Kernel cleanup unnecessary for this kernel.  Skipping..."
  1598.     elif [ -z "$no_clean_kernel" ]; then
  1599.     cd "$kernel_source_dir"
  1600.     [ -z "$kerneldoth_contents" ] && invoke_command "make mrproper" "cleaning kernel tree (make mrproper)" background
  1601.     [ -n "$config_contents" ] && echo "$config_contents" > .config
  1602.     [ -n "$kerneldoth_contents" ] && echo "$kerneldoth_contents" > /boot/kernel.h
  1603.     cd - >/dev/null
  1604.     fi
  1605.  
  1606.     # Clean the build directory
  1607.     rm -rf "$dkms_tree/$module/$module_version/build/*"
  1608. }
  1609.  
  1610. function build_module()
  1611. {
  1612.     prepare_build
  1613.     do_build
  1614.     clean_build
  1615.     echo $""
  1616.     echo $"DKMS: build Completed."
  1617. }
  1618.  
  1619. function possible_dest_module_locations()
  1620. {
  1621.     # $1 = count
  1622.     # There are two places an installed module may really be:
  1623.     # 1) "$install_tree/$kernelver/${dest_module_location[$count]}/${dest_module_name[$count]}$module_suffix"
  1624.     # 2) "$install_tree/$kernelver/${DEST_MODULE_LOCATION[$count]}/${dest_module_name[$count]}$module_suffix"
  1625.     # override_dest_module_location() is what controls whether or not they're the same.
  1626.  
  1627.     local location
  1628.     location[0]="${dest_module_location[$count]}"
  1629.     [ "${DEST_MODULE_LOCATION[$count]}" != "${dest_module_location[$count]}" ] && \
  1630.     location[1]="${DEST_MODULE_LOCATION[$count]}"
  1631.  
  1632.     echo "${location[0]} ${location[1]}"
  1633. }
  1634.  
  1635. function find_actual_dest_module_location()
  1636. {
  1637.     local module="$1"
  1638.     local count="$2"
  1639.     local kernelver="$3"
  1640.     local arch="$4"
  1641.     local locations="$(possible_dest_module_locations $count)"
  1642.     local l
  1643.     local dkms_owned
  1644.     local installed
  1645.     dkms_owned="${dkms_tree}/${module}/kernel-${kernelver}-${arch}/module/${dest_module_name[$count]}${module_suffix}"
  1646.  
  1647.     for l in $locations; do
  1648.     installed="${install_tree}/${kernelver}${l}/${dest_module_name[${count}]}${module_suffix}"
  1649.     if [ -f "${installed}" ] && diff "${dkms_owned}" "${installed}" > /dev/null 2>&1; then
  1650.         echo "${l}"
  1651.         return 0
  1652.     fi
  1653.     done
  1654.  
  1655. }
  1656.  
  1657. function do_uninstall()
  1658. {
  1659.     # $1 = kernel version
  1660.     # $2 = arch
  1661.  
  1662.     echo $""
  1663.     echo $"-------- Uninstall Beginning --------"
  1664.     echo $"Module:  $module"
  1665.     echo $"Version: $module_version"
  1666.     echo $"Kernel:  $1 ($2)"
  1667.     echo $"-------------------------------------"
  1668.  
  1669.     set_module_suffix "$1"
  1670.  
  1671.     # If kernel-<kernelver> symlink points to this module, check for original_module and put it back
  1672.     local was_active=""
  1673.     readlink "$dkms_tree/$module/kernel-$1-$2"
  1674.     local kernel_symlink="$read_link"
  1675.     local real_dest_module_location
  1676.     if [ "$kernel_symlink" == "$module_version/$1/$2" ]; then
  1677.     was_active="true"
  1678.     echo $""
  1679.     echo $"Status: Before uninstall, this module version was ACTIVE on this kernel."
  1680.     # remove kabi-tracking if last instance removed
  1681.     set_weak_modules
  1682.     if [ -n "${weak_modules}" ] &&
  1683.         [ `$0 status -m $module -v $module_version | grep -v "installed-weak" | grep -c "installed"` -eq 1 ]; then
  1684.         echo $"Removing any linked weak-modules"
  1685.         list_each_installed_module "$module" "$1" "$2" | ${weak_modules} --remove-modules
  1686.     fi
  1687.  
  1688.     count=0
  1689.     while [ "$count" -lt "${#built_module_name[@]}" ]; do
  1690.         real_dest_module_location="$(find_actual_dest_module_location $module $count $1 $2)"
  1691.         echo $""
  1692.         echo $"${dest_module_name[$count]}$module_suffix:"
  1693.         echo $" - Uninstallation"
  1694.         echo $"   - Deleting from: $install_tree/$1${real_dest_module_location}/"
  1695.         rm -f "$install_tree/$1${real_dest_module_location}/${dest_module_name[$count]}$module_suffix"
  1696.         echo $" - Original module"
  1697.         if [ -e "$dkms_tree/$module/original_module/$1/$2/${dest_module_name[$count]}$module_suffix" ]; then
  1698.         case "$running_distribution" in
  1699.             Debian* | Ubuntu* ) ;;
  1700.             *)
  1701.             echo $"   - Archived original module found in the DKMS tree"
  1702.             echo $"   - Moving it to: $install_tree/$1${DEST_MODULE_LOCATION[$count]}/"
  1703.             mkdir -p "$install_tree/$1${DEST_MODULE_LOCATION[$count]}/"
  1704.             mv -f "$dkms_tree/$module/original_module/$1/$2/${dest_module_name[$count]}$module_suffix" \
  1705.                    "$install_tree/$1${DEST_MODULE_LOCATION[$count]}/" 2>/dev/null
  1706.             ;;
  1707.         esac
  1708.         else
  1709.         echo $"   - No original module was found for this module on this kernel."
  1710.         echo $"   - Use the dkms install command to reinstall any previous module version."
  1711.  
  1712.             # Remove modules_conf entries from /etc/modules.conf if remake_initrd is set or if this is last instance removed
  1713.         if [ -n "$remake_initrd" ] || \
  1714.             [ `$0 status -m $module -v $module_version | \
  1715.             grep -c "installed"` -eq 1 ]; then
  1716.             echo $""
  1717.             moduleconfig_remove "$1"
  1718.         fi
  1719.         fi
  1720.         count=$(($count+1))
  1721.     done
  1722.     rm -f "$dkms_tree/$module/kernel-$1-$2"
  1723.     else
  1724.     echo $""
  1725.     echo $"Status: This module version was INACTIVE for this kernel."
  1726.     fi
  1727.  
  1728.     # Run the post_remove script
  1729.     if [ -n "$post_remove" ] && [ -x `echo "$dkms_tree/$module/$module_version/source/$post_remove" | sed 's/ .*//'` ]; then
  1730.     echo $""
  1731.     echo $"Running the post_remove script:"
  1732.     $dkms_tree/$module/$module_version/source/$post_remove
  1733.     fi
  1734.  
  1735.     # Run depmod because we changed /lib/modules
  1736.     invoke_command "do_depmod $1" "depmod" background
  1737.  
  1738.     # Do remake_initrd things (remake initrd)
  1739.     if [ -n "$remake_initrd" ] && [ -n "$was_active" ]; then
  1740.     remake_initrd "$1" "$2"
  1741.     if [ "$?" -ne 0 ]; then
  1742.         echo $""
  1743.         echo $"WARNING! WARNING! WARNING!"
  1744.         echo $"There was a problem remaking your initrd.  You must manually remake it"
  1745.         echo $"before booting into this kernel."
  1746.         echo $""
  1747.     fi
  1748.     fi
  1749.  
  1750.     # Delete the original_module if nothing for this kernel is installed anymore
  1751.     if [ -n "$was_active" ] && [ -d "$dkms_tree/$module/original_module/$1/$2" ] && ! [ -d "$dkms_tree/$module/original_module/$1/$2/collisions" ]; then
  1752.     echo $""
  1753.     echo $"Removing original_module from DKMS tree for kernel $1 ($2)"
  1754.     rm -rf "$dkms_tree/$module/original_module/$1/$2" 2>/dev/null
  1755.     [ -z "`find $dkms_tree/$module/original_module/$1/* -maxdepth 0 -type d 2>/dev/null`" ] && rm -rf "$dkms_tree/$module/original_module/$1"
  1756.     elif [ -n "$was_active" ] && [ -d "$dkms_tree/$module/original_module/$1/$2/collisions" ]; then
  1757.     echo $""
  1758.     echo $"Keeping directory $dkms_tree/$module/original_module/$1/$2/collisions/"
  1759.     echo $"for your reference purposes.  Your kernel originally contained multiple"
  1760.     echo $"same-named modules and this directory is now where these are located."
  1761.     fi
  1762.     [ -z "`find $dkms_tree/$module/original_module/* -maxdepth 0 -type d 2>/dev/null`" ] && rm -rf "$dkms_tree/$module/original_module"
  1763.  
  1764.     # Re-add entries to modules.conf if this module/version is still installed on another kernel
  1765.     # But only do this if it was just ACTIVE on the kernel we just uninstalled from
  1766.     [ -n "$was_active" ] && [ -n "$remake_initrd" ] && $0 status -m $module -v $module_version | grep -q "installed" && moduleconfig_add "$1"
  1767.  
  1768.     echo $""
  1769.     echo $"DKMS: uninstall Completed."
  1770. }
  1771.  
  1772. function uninstall_module ()
  1773. {
  1774.     setup_kernels_arches "uninstall"
  1775.  
  1776.     # Check that the right arguments were passed
  1777.     if [ -z "$module" ] || [ -z "$module_version" ]; then
  1778.     echo $"" >&2
  1779.     echo $"Error! Invalid number of parameters passed." >&2
  1780.     echo $"Usage: uninstall -m <module> -v <module-version>" >&2
  1781.     echo $"   or: uninstall -m <module> -v <module-version> -k <kernel-version>" >&2
  1782.     exit 1
  1783.     fi
  1784.  
  1785.     # Check that $module is in the dkms tree
  1786.     if ! [ -d "$dkms_tree/$module" ]; then
  1787.     echo $"" >&2
  1788.     echo $"Error! There are no instances of module: $module" >&2
  1789.     echo $"located in the DKMS tree." >&2
  1790.     exit 2
  1791.     fi
  1792.  
  1793.     # Make sure that its installed in the first place
  1794.     if ! [ -d "$dkms_tree/$module/$module_version" ]; then
  1795.     echo $"" >&2
  1796.     echo $"Error! The module/version combo: $module-$module_version" >&2
  1797.     echo $"is not located in the DKMS tree." >&2
  1798.     exit 3
  1799.     fi
  1800.  
  1801.     # Read the conf file
  1802.     read_conf "${kernelver_array[0]}" "${arch_array[0]}"
  1803.     if [ "$?" -ne 0 ]; then
  1804.     echo $"" >&2
  1805.     echo $"Error! Bad conf file." >&2
  1806.     echo $"Your dkms.conf is not valid." >&2
  1807.     exit 4
  1808.     fi
  1809.  
  1810.     # Only do stuff if module/module version is currently installed
  1811.     readlink "$dkms_tree/$module/kernel-${kernelver_array[0]}-${arch_array[0]}"
  1812.     local kernel_symlink="$read_link"
  1813.     if [ "$kernel_symlink" == "$module_version/${kernelver_array[0]}/${arch_array[0]}" ]; then
  1814.     do_uninstall "${kernelver_array[0]}" "${arch_array[0]}"
  1815.     else
  1816.     echo $"" >&2
  1817.     echo $"Error! The module $module $module_version is not currently installed." >&2
  1818.     echo $"This module is not currently ACTIVE for kernel ${kernelver_array[0]} (${arch_array[0]})." >&2
  1819.     exit 5
  1820.     fi
  1821. }
  1822.  
  1823. function remove_module ()
  1824. {
  1825.     # Check that the right arguments were passed (must be done before setup_kernels_arches)
  1826.     if [ -z "$module" ] || [ -z "$module_version" ] || $([ -z "${kernelver_array[0]}" ] && [ -z "$all" ]); then
  1827.     echo $"" >&2
  1828.     echo $"Error! Invalid number of parameters passed." >&2
  1829.     echo $"Usage: remove -m <module> -v <module-version> --all" >&2
  1830.     echo $"   or: remove -m <module> -v <module-version> -k <kernel-version>" >&2
  1831.     exit 1
  1832.     fi
  1833.  
  1834.     setup_kernels_arches "remove"
  1835.  
  1836.     # Check that $module is in the dkms tree
  1837.     if ! [ -d "$dkms_tree/$module/$module_version" ]; then
  1838.     echo $"" >&2
  1839.     echo $"Error! There are no instances of module: $module" >&2
  1840.     echo $"$module_version located in the DKMS tree." >&2
  1841.     exit 3
  1842.     fi
  1843.  
  1844.     local i=0
  1845.     while [ $i -lt ${#kernelver_array[@]} ]; do
  1846.  
  1847.         # make sure its there first before removing
  1848.     if ! [ -d "$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}" ]; then
  1849.         echo $"" >&2
  1850.         echo $"Error! There is no instance of $module $module_version" >&2
  1851.         echo $"for kernel ${kernelver_array[$i]} (${arch_array[$i]}) located in the DKMS tree." >&2
  1852.         exit 4
  1853.     fi
  1854.  
  1855.         # Do --rpm_safe_upgrade check (exit out and don't do remove if inter-release RPM upgrade scenario occurs)
  1856.     if [ -n "$rpm_safe_upgrade" ]; then
  1857.         local pppid=`cat /proc/$PPID/status | grep PPid: | awk {'print $2'}`
  1858.         local time_stamp=`ps -o lstart --no-headers -p $pppid 2>/dev/null`
  1859.         for lock_file in `ls $tmp_location/dkms_rpm_safe_upgrade_lock.$pppid.* 2>/dev/null`; do
  1860.         lock_head=`head -n 1 $lock_file 2>/dev/null`
  1861.         lock_tail=`tail -n 1 $lock_file 2>/dev/null`
  1862.         if [ "$lock_head" == "$module-$module_version" ] && [ "$lock_tail" == "$time_stamp" ] && [ -n "$time_stamp" ]; then
  1863.             echo $""
  1864.             echo $"DKMS: Remove cancelled because --rpm_safe_upgrade scenario detected."
  1865.             rm -f $lock_file
  1866.             exit 0
  1867.         fi
  1868.         done
  1869.     fi
  1870.  
  1871.         # Read the conf file
  1872.     read_conf "${kernelver_array[$i]}" "${arch_array[$i]}"
  1873.     if [ "$?" -ne 0 ]; then
  1874.         echo $"" >&2
  1875.         echo $"Error! Bad conf file." >&2
  1876.         echo $"File: $dkms_tree/$module/$module_version/source/dkms.conf does not represent" >&2
  1877.         echo $"a valid dkms.conf file." >&2
  1878.         exit 5
  1879.     fi
  1880.  
  1881.     do_uninstall "${kernelver_array[$i]}" "${arch_array[$i]}"
  1882.  
  1883.         # Delete the $kernel_version/$arch_used part of the tree
  1884.     rm -rf "$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}"
  1885.     [ -z "`find $dkms_tree/$module/$module_version/${kernelver_array[$i]}/* -maxdepth 0 -type d 2>/dev/null`" ] && rm -rf "$dkms_tree/$module/$module_version/${kernelver_array[$i]}"
  1886.  
  1887.     i=$(($i + 1))
  1888.     done
  1889.  
  1890.     # Delete the $module_version part of the tree if no other $module_version/$kernel_version dirs exist
  1891.     if [ -z "$(find $dkms_tree/$module/$module_version/* -maxdepth 0 -type d 2>/dev/null | egrep -v "(build|tarball|driver_disk|rpm|deb|source)$")"  ]; then
  1892.     echo $""
  1893.     echo $"------------------------------"
  1894.     echo $"Deleting module version: $module_version"
  1895.     echo $"completely from the DKMS tree."
  1896.     echo $"------------------------------"
  1897.     rm -rf "$dkms_tree/$module/$module_version"
  1898.     echo $"Done."
  1899.     fi
  1900.  
  1901.     # Get rid of any remnant directories if necessary
  1902.     if [ `ls "$dkms_tree/$module" | wc -w | awk '{print $1}'` -eq 0 ]; then
  1903.     rm -rf "$dkms_tree/$module" 2>/dev/null
  1904.  
  1905.     # Its now safe to completely remove references in /etc/sysconfig/kernel for SuSE
  1906.     etc_sysconfig_kernel_modify "delete"
  1907.     fi
  1908. }
  1909.  
  1910. function find_module_from_ko()
  1911. {
  1912.     local depth="$1"
  1913.     local ko="$2"
  1914.     local basename_ko=$(basename "${ko}")
  1915.     local module
  1916.     local kernellink
  1917.  
  1918.     for kernellink in $(find $dkms_tree -maxdepth $depth -mindepth $depth -name kernel-\* -type l); do
  1919.     module=$(echo "$kernellink" | awk -F / '{print $(NF-1)}')
  1920.     diff "$kernellink/module/${basename_ko}" "${ko}" >/dev/null 2>&1 && echo "$module" && break
  1921.     done
  1922.     echo ""
  1923. }
  1924.  
  1925. # be careful.  string_array is global
  1926. declare -a string_array
  1927. function add_string_to_array_unique()
  1928. {
  1929.     # string="$1"
  1930.     local count=0
  1931.     local found=0
  1932.     while [ "$count" -lt "${#string_array[@]}" ]; do
  1933.     if [ "$1" == "${string_array[$count]}" ]; then
  1934.         found=1
  1935.         break
  1936.     fi
  1937.     count=$(($count + 1))
  1938.     done
  1939.     if [ "${found}" -eq 0 ]; then
  1940.     string_array[${#string_array[@]}]="$1"
  1941.     fi
  1942. }
  1943.  
  1944. function print_string_array()
  1945. {
  1946.     local count=0
  1947.     while [ "$count" -lt "${#string_array[@]}" ]; do
  1948.     echo "${string_array[$count]}"
  1949.     count=$(($count + 1))
  1950.     done
  1951. }
  1952.  
  1953. function do_status_weak ()
  1954. {
  1955.     # these are the requested mod/ver/kern/arch fields
  1956.     local r_mod="$1"; shift
  1957.     local r_ver="$1"; shift
  1958.     local r_kern="$1"; shift
  1959.     local r_arch="$1"; shift
  1960.     local installedkern
  1961.     local ko
  1962.     local basename_ko
  1963.     local installed_ko
  1964.     local tree_ver
  1965.     local tree_kern
  1966.     local tree_arch
  1967.     local f
  1968.     local depth=1
  1969.     [ -z "$r_mod" ] && depth=2
  1970.     # recognize weak modules.  These are in $kern/weak-updates but are symlinks to another $kern/extra file.
  1971.  
  1972.     for installedkern in $(find "$install_tree" -maxdepth 1 -mindepth 1 -type d 2>/dev/null); do
  1973.     for ko in $(find "$installedkern/weak-updates" -type l 2>/dev/null); do
  1974.         installedkernver=$(basename $installedkern)
  1975.         basename_ko=$(basename $ko)
  1976.         readlink $ko
  1977.         installed_ko="$read_link"
  1978.         if [ ! -e "$installed_ko" ]; then
  1979.         # dangling symlink, ouch, but is somebody else's problem so ignore it
  1980.         continue
  1981.         fi
  1982.         # remember, installed_ko is probably a relative path, so $kernelversion isn't present in its link
  1983.         # is $installed_ko in /var/lib/dkms as installed?  Find which module has it
  1984.         for f in $(find $dkms_tree/$r_mod -maxdepth $depth -mindepth $depth -name kernel-\* -type l 2>/dev/null); do
  1985.         if [ -z "$r_mod" ]; then
  1986.             mod=$(find_module_from_ko "$depth" "$ko")
  1987.         else
  1988.             mod="$r_mod"
  1989.         fi
  1990.         readlink "$f"
  1991.         tree_ver=$(echo "$read_link" | awk -F / '{print $1}')
  1992.         tree_kern=$(echo "$read_link" | awk -F / '{print $2}')
  1993.         tree_arch=$(echo "$read_link" | awk -F / '{print $3}')
  1994.         if diff $dkms_tree/$mod/$tree_ver/$tree_kern/$tree_arch/module/$basename_ko  \
  1995.             $installed_ko >/dev/null 2>&1; then
  1996.             if [ "$r_mod" == "$mod" -o -z "$r_mod" ] && \
  1997.             [ "$r_ver" == "$tree_ver" -o -z "$r_ver" ] && \
  1998.             [ "$r_kern" == "$installedkernver" -o -z "$r_kern" ] && \
  1999.             [ "$r_arch" == "$tree_arch" -o -z "$r_arch" ]; then
  2000.             add_string_to_array_unique "$mod, $tree_ver, $installedkernver, $tree_arch: installed-weak from $tree_kern"
  2001.             fi
  2002.         fi
  2003.         done
  2004.         done
  2005.     done
  2006.     print_string_array
  2007. }
  2008.  
  2009. do_status ()
  2010. {
  2011.     local mod="$1"; shift
  2012.     local ver="$1"; shift
  2013.     local kern="$1"; shift
  2014.     local arch="$1"; shift
  2015.     local tree_depth="$1"; shift
  2016.  
  2017.     local next
  2018.     local working_dir
  2019.     [ $tree_depth -eq 0 ] && next="mod"  && working_dir="$dkms_tree"
  2020.     [ $tree_depth -eq 1 ] && next="ver"  && working_dir="$dkms_tree/$mod"
  2021.     [ $tree_depth -eq 2 ] && next="kern" && working_dir="$dkms_tree/$mod/$ver"
  2022.     [ $tree_depth -eq 3 ] && next="arch" && working_dir="$dkms_tree/$mod/$ver/$kern"
  2023.     [ $tree_depth -eq 4 ] && next="done" && working_dir="$dkms_tree/$mod/$ver/$kern/$arch"
  2024.  
  2025.     if [ -n "${!next}" ] && [ "$next" != "done" ]; then
  2026.     do_status "$mod" "$ver" "$kern" "$arch" "$(($tree_depth + 1))"
  2027.     elif [ "$next" != "done" ]; then
  2028.     local keep_traversing="no"
  2029.     for directory in `find "$working_dir" -type d -maxdepth 1 -mindepth 1 2>/dev/null`; do
  2030.         local next_value=`echo $directory | sed "s#$working_dir/##"`
  2031.         if ! echo "build original_module tarball driver_disk rpm" | grep -q "$next_value\b"; then
  2032.         keep_traversing="yes"
  2033.         [ "$next" == "mod" ]  && mod=$next_value
  2034.         [ "$next" == "ver" ]  && ver=$next_value
  2035.         [ "$next" == "kern" ] && kern=$next_value
  2036.         [ "$next" == "arch" ] && arch=$next_value
  2037.         do_status "$mod" "$ver" "$kern" "$arch" "$(($tree_depth + 1))"
  2038.         fi
  2039.     done
  2040.     fi
  2041.  
  2042.     if [ "$keep_traversing" == "no" ] && [ $tree_depth -eq 2 ] && [ -z "$arch" ] || [ "$next" == "done" ]; then
  2043.     local state="added" && stat_display="$mod, $ver:"
  2044.     [ -d "$working_dir/module" ] && state="built" && stat_display="$mod, $ver, $kern, $arch:"
  2045.     if [ -h "$dkms_tree/$mod/kernel-$kern-$arch" ]; then
  2046.         readlink "$dkms_tree/$mod/kernel-$kern-$arch"
  2047.         [ "$read_link" == "$ver/$kern/$arch" ] && state="installed"
  2048.     fi
  2049.  
  2050.     if [ "$state" == "built" ] || [ "$state" == "installed" ]; then
  2051.         set_module_suffix "$kern"
  2052.         local extra_status=""
  2053.         conf="$dkms_tree/$mod/$ver/source/dkms.conf"
  2054.         read_conf "$kern" "$arch" "$conf"
  2055.         [ -d "$dkms_tree/$mod/original_module/$kern/$arch" ] && extra_status="(original_module exists)"
  2056.         local count=0
  2057.         local real_dest_module_location
  2058.         while [ "$count" -lt "${#dest_module_name[@]}" ]; do
  2059.         tree_mod="$dkms_tree/$mod/$ver/$kern/$arch/module/${dest_module_name[$count]}$module_suffix"
  2060.         if ! [ -e "$tree_mod" ]; then
  2061.             extra_status="$extra_status (WARNING! Missing some built modules!)"
  2062.         elif [ "$state" == "installed" ]; then
  2063.             real_dest_module_location="$(find_actual_dest_module_location $mod $count $kern $arch)"
  2064.             if ! diff -q "$tree_mod" "$install_tree/$kern${real_dest_module_location}/${dest_module_name[$count]}$module_suffix" >/dev/null 2>&1; then
  2065.             extra_status="$extra_status (WARNING! Diff between built and installed module!)"
  2066.             fi
  2067.         fi
  2068.         count=$(($count+1))
  2069.         done
  2070.     fi
  2071.  
  2072.     [ -d "$working_dir" ] && echo "$stat_display $state $extra_status"
  2073.     fi
  2074. }
  2075.  
  2076. show_status ()
  2077. {
  2078.     setup_kernels_arches "status"
  2079.  
  2080.     local j=0
  2081.     if [ ${#kernelver_array[@]} -eq 0 ]; then
  2082.     do_status "$module" "$module_version" "${kernelver_array[0]}" "${arch_array[0]}" 0
  2083.     do_status_weak "$module" "$module_version" "${kernelver_array[0]}" "${arch_array[0]}"
  2084.     else
  2085.     while [ $j -lt ${#kernelver_array[@]} ]; do
  2086.         do_status "$module" "$module_version" "${kernelver_array[$j]}" "${arch_array[$j]}" 0
  2087.         do_status_weak "$module" "$module_version" "${kernelver_array[$j]}" "${arch_array[$j]}"
  2088.         j=$(($j + 1))
  2089.     done
  2090.     fi
  2091. }
  2092.  
  2093. function create_temporary_trees ()
  2094. {
  2095.     if [ -n "$module" ] || [ -n "$module_version" ]; then
  2096.     return
  2097.     fi
  2098.  
  2099.     [ -r dkms.conf ] || return
  2100.  
  2101.     . dkms.conf
  2102.     module="$PACKAGE_NAME"
  2103.     module_version="$PACKAGE_VERSION"
  2104.  
  2105.     source_tree=`mktemp -d`
  2106.     dkms_tree=`mktemp -d`
  2107.  
  2108.     local source_tree_dir="$source_tree/$PACKAGE_NAME-$PACKAGE_VERSION"
  2109.     mkdir -p "$source_tree_dir"
  2110.     cp -a * "$source_tree_dir" # intentionally skip .git or .hg
  2111.     add_module
  2112.     temporary_trees_del_command="rm -rf $source_tree $dkms_tree"
  2113. }
  2114.  
  2115. function delete_temporary_trees ()
  2116. {
  2117.     $temporary_trees_del_command
  2118.     if [ -n "$temporary_trees_del_command" ]; then
  2119.     module=
  2120.     module_version=
  2121.     source_tree=
  2122.     dkms_tree=
  2123.     temporary_trees_del_command=
  2124.     fi
  2125. }
  2126.  
  2127. function in_temporary_trees ()
  2128. {
  2129.     [ -n "$temporary_trees_del_command" ]
  2130.     return $?
  2131. }
  2132.  
  2133. media_valid()
  2134. {
  2135.     if [ "$media" == "floppy" ] ||
  2136.     [ "$media" == "iso"   ] ||
  2137.     [ "$media" == "tar" ]; then
  2138.     return 0
  2139.     fi
  2140.     return 1
  2141. }
  2142.  
  2143. make_driver_disk ()
  2144. {
  2145.     setup_kernels_arches "mkdriverdisk"
  2146.  
  2147.     # Check that the right arguments were passed
  2148.     if [ -z "$module" ] || [ -z "$module_version" ] || [ -z "$distro" ] || [ -z "${kernelver_array[0]}" ]; then
  2149.     echo $"" >&2
  2150.     echo $"Error! Invalid number of parameters passed." >&2
  2151.     echo $"Usage: mkdriverdisk -d <distro> -m <module> -v <module-version> -k <kernelver> [--media floppy|iso|tar]" >&2
  2152.     exit 1
  2153.     fi
  2154.  
  2155.     # default to floppy media
  2156.     [ -z "$media" ] && media="floppy"
  2157.     media_valid
  2158.     if [ $? -eq 1 ]; then
  2159.     echo $"" >&2
  2160.     echo "$Error! Media $media is invalid." >&2
  2161.     echo $"Usage: mkdriverdisk -d <distro> -m <module> -v <module-version> -k <kernelver> [--media floppy|iso|tar]" >&2
  2162.     exit 1
  2163.     fi
  2164.  
  2165.     # Check that source symlink works
  2166.     if ! [ -d "$dkms_tree/$module/$module_version/source" ]; then
  2167.     echo $"" >&2
  2168.     echo $"Error! DKMS tree does not contain: $module-$module_version" >&2
  2169.     echo $"Build cannot continue without the proper tree." >&2
  2170.     exit 2
  2171.     fi
  2172.  
  2173.     # Confirm that distro is supported
  2174.     case "$distro" in
  2175.     redhat | redhat[12] | suse | UnitedLinux | ubuntu)
  2176.         ;;
  2177.     *)
  2178.         echo $"" >&2
  2179.         echo $"Error! Invalid distro argument. Currently, the distros" >&2
  2180.         echo $"supported are: redhat, redhat1, redhat2, suse, UnitedLinux" >&2
  2181.         echo $"               ubuntu" >&2
  2182.         exit 3
  2183.         ;;
  2184.     esac
  2185.  
  2186.     # Read the conf file
  2187.     read_conf "${kernelver_array[0]}" "${arch_array[0]}"
  2188.     if [ "$?" -ne 0 ]; then
  2189.     echo $"" >&2
  2190.     echo $"Error! Bad conf file." >&2
  2191.     echo $"Your dkms.conf is not valid." >&2
  2192.     exit 4
  2193.     fi
  2194.  
  2195.     case "$distro" in
  2196.         redhat*)
  2197.         make_redhat_driver_disk
  2198.         ;;
  2199.     ubuntu)
  2200.         make_ubuntu_driver_disk
  2201.         ;;
  2202.     *)
  2203.         make_suse_driver_disk
  2204.         ;;
  2205.     esac
  2206. }
  2207.  
  2208.  
  2209. make_driver_disk_floppy()
  2210. {
  2211.     local image_name="$1"
  2212.     local source_dir="$2"
  2213.     local file
  2214.     local fs='ext2'
  2215.     case "$distro" in
  2216.     redhat*)
  2217.         fs='vfat'
  2218.         ;;
  2219.     esac
  2220.  
  2221.     rm -f "$image_name"
  2222.     invoke_command "dd if=/dev/zero of=$image_name bs=$(($size/20))k count=20" "making a blank floppy image" background
  2223.     if [ "$fs" == 'vfat' ]; then
  2224.     invoke_command "mkdosfs $image_name" "mkdosfs" background
  2225.     elif [ "$fs" == 'ext2' ]; then
  2226.      invoke_command "mke2fs -F $image_name" "mke2fs" background
  2227.     fi
  2228.  
  2229.     local mntdir=`mktemp -d $tmp_location/dkms.XXXXXX`
  2230.     if [ -z "$mntdir" ]; then
  2231.     echo $""
  2232.     echo $"Error: Could not create a temporary directory, failing."
  2233.     return
  2234.     fi
  2235.     invoke_command "mount -o loop -t $fs $image_name $mntdir >/dev/null 2>&1" "loopback mounting disk image"
  2236.     [ -d "$mntdir/lost+found" ] && rmdir "$mntdir/lost+found"
  2237.     invoke_command "cp -r $source_dir/* $mntdir/" "  copying files to floppy disk image"
  2238.     invoke_command "umount $mntdir" "unmounting disk image"
  2239.     rm -rf $mntdir
  2240. }
  2241.  
  2242. make_driver_disk_isotar()
  2243. {
  2244.     local type="$1"
  2245.     local image_name="$2"
  2246.     local source_dir="$3"
  2247.     local file
  2248.     if [ "$type" == "iso" ]; then
  2249.     invoke_command "mkisofs -v -r -J -pad -V $module -o $image_name ." "mkisofs" background
  2250.     elif [ "$type" == "tar" ]; then
  2251.     invoke_command "tar cvf $image_name ." "tar" background
  2252.     fi
  2253. }
  2254.  
  2255. make_driver_disk_media()
  2256. {
  2257.     echo "Copying files $2"
  2258.  
  2259.     case "$media" in
  2260.     floppy*)
  2261.         make_driver_disk_floppy "$1" "$2"
  2262.         ;;
  2263.     iso*)
  2264.         make_driver_disk_isotar "iso" "$1" "$2"
  2265.         ;;
  2266.     tar*)
  2267.         make_driver_disk_isotar "tar" "$1" "$2"
  2268.         ;;
  2269.     esac
  2270. }
  2271.  
  2272. driver_disk_suffix()
  2273. {
  2274.     local suffix
  2275.     case "$media" in
  2276.     floppy*)
  2277.         suffix="img"
  2278.         ;;
  2279.     iso*)
  2280.         suffix="iso"
  2281.         ;;
  2282.     tar*)
  2283.         suffix="tar"
  2284.         ;;
  2285.     esac
  2286.     echo $suffix
  2287. }
  2288.  
  2289. make_redhat_driver_disk()
  2290. {
  2291.     # kludge to allow redhat1 driver disks with BOOT kernel modules (arch i386)
  2292.     if [ "$distro" == "redhat1" ] && [ "$multi_arch" == "true" ]; then
  2293.     local i=0
  2294.     local redhat1_okay="true"
  2295.     local other_arch=""
  2296.     while [ $i -lt ${#kernelver_array[@]} ]; do
  2297.         if [ "${arch_array[$i]}" != "i386" ] && [ "$other_arch" != "${arch_array[$i]}" ] && [ -n "$other_arch" ]; then
  2298.             redhat1_okay="false"
  2299.         elif [ "${arch_array[$i]}" != "i386" ] && [ "$other_arch" != "${arch_array[$i]}" ] && [ -z "$other_arch" ]; then
  2300.             other_arch="${arch_array[$i]}"
  2301.         fi
  2302.         i=$(($i+1))
  2303.     done
  2304.     if [ "$redhat1_okay" == "false" ]; then
  2305.         echo $"" >&2
  2306.         echo $"Error! You have specified a Red Hat version 1 driver disk, but have also"  >&2
  2307.         echo $"specified multiple architectures.  Version 1 does not support this." >&2
  2308.         echo $"Use 'redhat2' instead (only OSes >= RHEL3, FC1 support version 2)." >&2
  2309.         exit 3
  2310.     fi
  2311.     fi
  2312.  
  2313.     if [ "$distro" == "redhat2" ] || [ "$multi_arch" == "true" ] && [ -z "$redhat1_okay" ]; then
  2314.     echo $"Creating Red Hat v2 driver disk (arch support)."
  2315.     echo $""
  2316.     local rhdd_filename="rhdd"
  2317.     else
  2318.     echo $"Creating Red Hat v1 driver disk."
  2319.     echo $""
  2320.     local rhdd_filename="rhdd-6.1"
  2321.     fi
  2322.  
  2323.     cpioarchive_dir_name=`mktemp -d $tmp_location/dkms.XXXXXX`
  2324.     if [ -z "$cpioarchive_dir_name" ]; then
  2325.     echo $""
  2326.     echo $"Error: Could not create a temporary directory, failing."
  2327.     return
  2328.     fi
  2329.  
  2330.     local i=0
  2331.     while [ $i -lt ${#kernelver_array[@]} ]; do
  2332.     set_module_suffix "${kernelver_array[$i]}"
  2333.     local count=0
  2334.  
  2335.      local dd_prefix="${kernelver_array[$i]}"
  2336.     [ "$distro" == "redhat2" ] && dd_prefix="${kernelver_array[$i]}/${arch_array[$i]}"
  2337.     [ "$multi_arch" == "true" ] && [ -z "$redhat1_okay" ] && dd_prefix="${kernelver_array[$i]}/${arch_array[$i]}"
  2338.  
  2339.     while [ "$count" -lt "${#dest_module_name[@]}" ]; do
  2340.         if ! [ -e "$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}/module/${dest_module_name[$count]}$module_suffix" ]; then
  2341.         echo $"" >&2
  2342.         echo $"Error! Cannot find module ${dest_module_name[$count]}$module_suffix for kernel ${kernelver_array[$i]} (${arch_array[$i]})." >&2
  2343.         echo $"Module/version must be in built state before making a driver disk." >&2
  2344.         rm -rf $cpioarchive_dir_name
  2345.         exit 5
  2346.         fi
  2347.         # FIXME: add check for KMP binary RPMs to include in the driver disk
  2348.         if [ -z "$kernel_version_list" ]; then
  2349.         kernel_version_list="kernel${kernelver_array[$i]}-${arch_array[$i]}"
  2350.         else
  2351.         kernel_version_list="$kernel_version_list-kernel${kernelver_array[$i]}-${arch_array[$i]}"
  2352.         fi
  2353.         mkdir -p $cpioarchive_dir_name/$dd_prefix
  2354.         echo "Marking ${kernelver_array[$i]}/${arch_array[$i]}/module/${dest_module_name[$count]}$module_suffix..."
  2355.         cp "$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}/module/${dest_module_name[$count]}$module_suffix" "$cpioarchive_dir_name/$dd_prefix/"
  2356.  
  2357.         modules_cgz_list="$dd_prefix/${dest_module_name[$count]}$module_suffix\n${modules_cgz_list}"
  2358.         count=$(($count+1))
  2359.     done
  2360.  
  2361.     i=$(($i + 1))
  2362.     done
  2363.  
  2364.     # Create directory and necessary files
  2365.     driver_disk_dir=`mktemp -d $tmp_location/dkms.XXXXXX`
  2366.     if [ -z "$driver_disk_dir" ]; then
  2367.     echo $""
  2368.     echo $"Error: Could not create a temporary directory, failing."
  2369.     return
  2370.     fi
  2371.  
  2372.     # Copy files for the driver disk (or warn if not present)
  2373.     local files_for_driverdisk="modinfo disk-info modules.dep pcitable modules.pcimap pci.ids"
  2374.     # Fedora Core 5 and higher, RHEL5 and higher, strictly require: rhdd, modules.cgz, modinfo, modules.alias, modules.dep
  2375.     # which is in effect ignoring disk-info, pcitable, modules.pcimap and pci.ids
  2376.     # and adding modules.alias, which will be generated.
  2377.  
  2378.     local files_into_driverdisk="modules.cgz $rhdd_filename modules.alias"
  2379.     for file in $files_for_driverdisk; do
  2380.     if ! [ -e "$dkms_tree/$module/$module_version/source/redhat_driver_disk/$file" ]; then
  2381.         echo $"Warning! File: $file not found in $dkms_tree/$module/$module_version/source/redhat_driver_disk/" >&2
  2382.     else
  2383.         files_into_driverdisk="$file $files_into_driverdisk"
  2384.         cp -f "$dkms_tree/$module/$module_version/source/redhat_driver_disk/$file" "$driver_disk_dir/" 2>/dev/null
  2385.     fi
  2386.     done
  2387.     echo "$module-$module_version driver disk" > "$driver_disk_dir/$rhdd_filename"
  2388.  
  2389.     # Make sure the kernel_version_list is not too long
  2390.     if [ `echo $kernel_version_list | wc -m | awk {'print $1'}` -gt 200 ]; then
  2391.     kernel_version_list="manykernels"
  2392.     fi
  2393.  
  2394.     local suffix="$(driver_disk_suffix)"
  2395.     local image_dir="$dkms_tree/$module/$module_version/driver_disk"
  2396.     local image_name="$module-$module_version-$kernel_version_list-dd.$suffix"
  2397.     echo $""
  2398.     echo $"Creating driver disk on $media media:"
  2399.     cd "$cpioarchive_dir_name"
  2400.     invoke_command "echo -e '$modules_cgz_list' | cpio -oH crc 2>/dev/null | gzip -9 > ./modules.cgz" "compressing modules.cgz" background
  2401.     cp -f ./modules.cgz "$driver_disk_dir/"
  2402.  
  2403.     # generate modules.alias file
  2404.     # On 2.4 kernels and kernels with no aliases. this won't yield anything.
  2405.     touch ./modules.alias
  2406.     for f in $(echo -e ${modules_cgz_list}); do
  2407.     module_wo_suffix=$(basename ${f} ${module_suffix})
  2408.     tmp_alias="./modules.alias.${module_wo_suffix}"
  2409.     f="./${f}"
  2410.     depmod -n ${f} 2>/dev/null | grep ^alias > ${tmp_alias}
  2411.     if [ -s ${tmp_alias} ]; then
  2412.         cat ${tmp_alias} >> ./modules.alias
  2413.     fi
  2414.     done
  2415.     [ -e ./modules.alias ] && cp -f ./modules.alias "$driver_disk_dir/"
  2416.  
  2417.     # FIXME: add rpms/ directory, copy in KMP RPMs, run createrepo --pretty
  2418.  
  2419.     cd - >/dev/null
  2420.     rm -rf "$cpioarchive_dir_name"
  2421.  
  2422.     mkdir -p "$image_dir"
  2423.     rm -f "$image_dir/$image_name"
  2424.  
  2425.     cd "$driver_disk_dir"
  2426.     make_driver_disk_media "$image_dir/$image_name" "$driver_disk_dir"
  2427.     cd - >/dev/null
  2428.     rm -rf "$driver_disk_dir"
  2429.  
  2430.     echo $""
  2431.     echo $"Disk image location: $image_dir/$image_name"
  2432.     echo $""
  2433.     echo $"DKMS: mkdriverdisk Completed."
  2434. }
  2435.  
  2436. find_external_dependencies()
  2437. {
  2438.     local mod deps 
  2439.     local count=0
  2440.     local i=0
  2441.  
  2442.     # find all module dependencies
  2443.     while [ "$count" -lt "${#dest_module_name[@]}" ]; do
  2444.         i=0
  2445.             while [ "$i" -lt "${#kernelver_array[@]}" ]; do
  2446.             set_module_suffix "${kernelver_array[$i]}"
  2447.             mod="$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}/module/${dest_module_name[$count]}$module_suffix"
  2448.             deps=(${deps[@]} $(modinfo "$mod" | sed -n 's/,/ /; s/^depends: *//p'))
  2449.             i=$(($i+1))
  2450.         done
  2451.         count=$(($count+1))
  2452.     done
  2453.  
  2454.     # prune internally satisfied dependencies
  2455.     i=0
  2456.     while [ "$i" -lt "${#deps[@]}" ]; do
  2457.         for mod in ${dest_module_name[@]}; do
  2458.             [ "${deps[i]}" == "$mod" ] && deps[i]=
  2459.         done
  2460.         i=$(($i+1))
  2461.     done
  2462.  
  2463.     i=0
  2464.     while [ "$i" -lt "${#deps[@]}" ]; do
  2465.         echo "${deps[i]}"
  2466.         i=$(($i+1))
  2467.     done | sort -u
  2468. }
  2469.  
  2470. make_suse_driver_disk()
  2471. {
  2472.     if [ -z "$release" ]; then
  2473.         echo $"" >&2
  2474.         echo $"Error! Invalid number of parameters passed for suse/UnitedLinux driver disk." >&2
  2475.         echo $"Usage: mkdriverdisk -d <distro> -m <module> -v <module-version> -k <kernelver>" >&2
  2476.         echo $"                    -r <release-number>" >&2
  2477.         exit 3
  2478.     fi
  2479.  
  2480.     local driver_disk_dir=`mktemp -d $tmp_location/dkms.XXXXXX`
  2481.     if [ -z "$driver_disk_dir" ]; then
  2482.         echo $""
  2483.         echo $"Error: Could not create a temporary directory, failing."
  2484.         return
  2485.     fi
  2486.     local suffix="$(driver_disk_suffix)"
  2487.     local image_dir="$dkms_tree/$module/$module_version/driver_disk"
  2488.     local image_name="$module-$module_version-$distro-$release-dd.$suffix"
  2489.  
  2490.     echo $""
  2491.     echo $"Creating driver disk:"
  2492.  
  2493.     local deps="$(find_external_dependencies)"
  2494.  
  2495.     local offset=0
  2496.     if [ -n "${deps[*]}" ]; then
  2497.         # reserve a place for dependencies
  2498.         local offset=1
  2499.     fi
  2500.  
  2501.     local count=0
  2502.     while [ "$count" -lt "${#dest_module_name[@]}" ]; do
  2503.  
  2504.         local i=0
  2505.         local topdir=`printf "%02d" $(($count+1+offset))`
  2506.             while [ "$i" -lt "${#kernelver_array[@]}" ]; do
  2507.             set_module_suffix "${kernelver_array[$i]}"
  2508.  
  2509.             if ! [ -e "$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}/module/${dest_module_name[$count]}$module_suffix" ]; then
  2510.                 echo $"" >&2
  2511.                 echo $"Error! Cannot find module ${dest_module_name[$count]}$module_suffix for kernel ${kernelver_array[$i]} (${arch_array[$i]})." >&2
  2512.                 echo $"Module/version must be in built state before making a driver disk." >&2
  2513.                 rm -rf $temp_dir_name
  2514.                 exit 5
  2515.             fi
  2516.                         # FIXME: add check for KMP binary RPMs to include in the driver disk
  2517.             suse_arch=${arch_array[$i]}
  2518.             case $suse_arch in
  2519.                 i?86)
  2520.                     suse_arch=i386
  2521.                     ;;
  2522.             esac
  2523.  
  2524.             echo "Marking ${kernelver_array[$i]}/${arch_array[$i]}/modules/${dest_module_name[$count]}$module_suffix..."
  2525.             mkdir -p "$driver_disk_dir/$topdir/$suse_arch-$release/install/lib/modules/${kernelver_array[$i]}${dest_module_location[$count]}"
  2526.             cp "$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}/module/${dest_module_name[$count]}$module_suffix" "$driver_disk_dir/$topdir/$suse_arch-$release/install/lib/modules/${kernelver_array[$i]}${dest_module_location[$count]}/"
  2527.  
  2528.             case ${kernelver_array[$i]} in
  2529.                 *-default)
  2530.                     mkdir -p "$driver_disk_dir/$topdir/$suse_arch-$release/modules/"
  2531.                     cp "$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}/module/${dest_module_name[$count]}$module_suffix" "$driver_disk_dir/$topdir/$suse_arch-$release/modules/"
  2532.                     ;;
  2533.             esac
  2534.  
  2535.             # create directory for dependency information
  2536.             [ -n "${deps[*]}" ] && mkdir -p "$driver_disk_dir/01/linux/$distro/$suse_arch-$release/modules"
  2537.  
  2538.             i=$(($i+1))
  2539.         done
  2540.  
  2541.         # ---
  2542.         for arch_release in `find $driver_disk_dir/$topdir -maxdepth 1 -mindepth 1 -type d | sed "s#$driver_disk_dir\/$topdir\/##"`; do
  2543.             cd "$driver_disk_dir/$topdir/$arch_release/install/"
  2544.             invoke_command "tar cvzf update.tar.gz lib/" "making update.tar.gz for $arch_release" background
  2545.             cd - >/dev/null
  2546.  
  2547.             mkdir -p "$driver_disk_dir/$topdir/linux/$distro/$arch_release/install"
  2548.             mkdir -p "$driver_disk_dir/$topdir/linux/$distro/$arch_release/modules"
  2549.  
  2550.             echo $"  copying update.tar.gz for $arch_release to disk image..."
  2551.             cp -f "$driver_disk_dir/$topdir/$arch_release/install/update.tar.gz" "$driver_disk_dir/$topdir/linux/$distro/$arch_release/install/"
  2552.  
  2553.             i=0
  2554.             postkernels=
  2555.             archtest=`echo ${arch_release} | sed 's/-.*//'`
  2556.             while [ "$i" -lt "${#kernelver_array[@]}" ]; do
  2557.                 if [ "${arch_array[$i]}" = "${archtest}" ]; then
  2558.                     postkernels="${postkernels} ${kernelver_array[$i]}"
  2559.                 fi
  2560.                 i=$(($i+1))
  2561.             done
  2562.  
  2563.             if [ -n "${postkernels}" ]; then
  2564.                 dstfile="$driver_disk_dir/$topdir/linux/$distro/$arch_release/install/update.post"
  2565.                 echo $"  creating update.post for $arch_release..."
  2566.                 (cat << EOF
  2567. #!/bin/sh
  2568.  
  2569. EOF
  2570.                  echo "kernlist=\"${postkernels}\""
  2571.                  echo
  2572.                  echo 'for kernel in ${kernlist}; do'
  2573.                  echo '    if [ -e /boot/System.map-${kernel} ]; then'
  2574.                  echo '        depmod -a -F /boot/System.map-${kernel} ${kernel}'
  2575.                  echo '    fi'
  2576.                  echo 'done'
  2577.                 ) > ${dstfile}
  2578.                 chmod a+x ${dstfile}
  2579.             fi
  2580.  
  2581.             if [ -d "$driver_disk_dir/$topdir/$arch_release/modules/" ]; then
  2582.                 echo $"  copying kernel modules for installation kernel to disk image..."
  2583.                 cp -f $driver_disk_dir/$topdir/$arch_release/modules/* $driver_disk_dir/$topdir/linux/$distro/$arch_release/modules/ 2>/dev/null
  2584.             else
  2585.                 echo $"  Warning! No kernel modules found for -default kernel."
  2586.             fi
  2587.  
  2588.             rm -fr "$driver_disk_dir/$topdir/$arch_release"
  2589.         done
  2590.  
  2591.         # ---
  2592.         count=$(($count+1))
  2593.     done
  2594.  
  2595.     local dir
  2596.     if [ -n "${deps[*]}" ]; then
  2597.         for dir in "$driver_disk_dir/01/linux/$distro/"*"/modules"; do
  2598.             for dep in ${deps[@]}; do
  2599.                 echo $dep >> "$dir/module.order"
  2600.             done
  2601.         done
  2602.     fi
  2603.  
  2604.         # FIXME: add suse-equivalent rpms/ directory, copy in KMP RPMs, run createrepo --pretty
  2605.  
  2606.     mkdir -p "$image_dir"
  2607.     rm -f "$image_dir/$image_name"
  2608.     cd "$driver_disk_dir"
  2609.     make_driver_disk_media "$image_dir/$image_name" "$driver_disk_dir"
  2610.     cd - >/dev/null
  2611.     rm -rf "$driver_disk_dir"
  2612.  
  2613.     echo $""
  2614.        echo $"Disk image location: $dkms_tree/$module/$module_version/driver_disk/$image_name"
  2615.     echo $""
  2616.     echo $"DKMS: mkdriverdisk Completed."
  2617. }
  2618.  
  2619. make_ubuntu_driver_disk()
  2620. {
  2621.     local suffix="$(driver_disk_suffix)"
  2622.     local image_dir="$dkms_tree/$module/$module_version/driver_disk"
  2623.     local image_name="$module-$module_version-$distro-dd.$suffix"
  2624.  
  2625.    local tempdir=`mktemp -d $tmp_location/dkms.XXXXXX`
  2626.    if [ -z "$tempdir" ]; then
  2627.       echo $""
  2628.       echo $"Error: Could not create a temporary directory, failing."
  2629.       return
  2630.    fi
  2631.  
  2632.    # Check that the dh_make command is present
  2633.    if ! which dpkg-deb >/dev/null 2>&1 ; then
  2634.       echo $"" >&2
  2635.       echo $"Error! dpkg-deb not present." >&2
  2636.       echo $"Install the dpkg-dev package." >&2
  2637.       exit 1
  2638.    fi
  2639.  
  2640.    local i=0
  2641.    while [ $i -lt ${#kernelver_array[@]} ]; do
  2642.       set_module_suffix "${kernelver_array[$i]}"
  2643.       # Driver disks only recognize i386 as package arch
  2644.       local arch=$(echo ${arch_array[$i]} | sed -e 's/i.86/i386/')
  2645.       local kvers=$(echo ${kernelver_array[$i]} | sed -e 's/[-_].*//')
  2646.        # ubuntu-drivers/<kver>/*_<debarch>.deb
  2647.       local dd_prefix="ubuntu-drivers/$kvers"
  2648.       local dd_suffix="_${arch}.deb"
  2649.       local count=0
  2650.       while [ "$count" -lt "${#dest_module_name[@]}" ]; do
  2651.          if ! [ -e "$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}/module/${dest_module_name[$count]}$module_suffix" ]; then
  2652.             echo $"" >&2
  2653.             echo $"Error! Cannot find module ${dest_module_name[$count]}$module_suffix for kernel ${kernelver_array[$i]} (${arch_array[$i]})." >&2
  2654.             echo $"Module/version must be in built state before making a driver disk." >&2
  2655.             rm -rf "$tempdir"
  2656.             exit 5
  2657.          fi
  2658.  
  2659.          mkdir -p "$tempdir/$dd_prefix"
  2660.          echo "Marking ${kernelver_array[$i]}/${arch_array[$i]}/module/${dest_module_name[$count]}$module_suffix..."
  2661.  
  2662.          local deb_dir="$tempdir/$dd_prefix/debian"
  2663.          local deb_lib_dir="$deb_dir/lib/modules/${kernelver_array[$i]}/updates/dkms"
  2664.          mkdir -p "$deb_lib_dir"
  2665.          cp "$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}/module/${dest_module_name[$count]}$module_suffix" "$deb_lib_dir"
  2666.          count=$(($count+1))
  2667.        done
  2668.  
  2669.        pushd "$deb_dir" > /dev/null 2>&1
  2670.        mkdir DEBIAN
  2671.        cat > DEBIAN/control <<EOF
  2672. Package: ${module}-modules-${kernelver_array[$i]}
  2673. Version: ${module_version}-1
  2674. Section: misc
  2675. Priority: optional
  2676. Architecture: $arch
  2677. Depends:
  2678. Maintainer: DKMS <dkms-devel@dell.com>
  2679. Description: DKMS packaged binary driver update
  2680.  DKMS automagically generated debian package for
  2681.  driver update disks, used with Ubuntu installation
  2682.  programs (such as Ubiquity).
  2683. EOF
  2684.  
  2685.        # Generate the DEBIAN/preinst file.
  2686.        # This is tricky as we need some parts evaluated now
  2687.        # and some parts evaluated at runtime
  2688.        echo '#!/bin/bash' > DEBIAN/preinst
  2689.        echo -n '[ "$(uname -r)" == ' >> DEBIAN/preinst
  2690.        echo -n "\"${kernelver_array[$i]}\"" >> DEBIAN/preinst
  2691.        echo  ' ] || exit 1' >> DEBIAN/preinst
  2692.        echo 'exit 0' >> DEBIAN/preinst
  2693.  
  2694.        chmod 0775 DEBIAN/preinst
  2695.        cd "$tempdir/$dd_prefix"
  2696.        dpkg-deb --build debian
  2697.        mv debian.deb "${module}_${module_version}-${kernelver_array[$i]}${dd_suffix}"
  2698.        rm -rf debian
  2699.        popd > /dev/null 2>&1
  2700.        i=$(($i+1))
  2701.    done
  2702.  
  2703.    echo "Copying source..."
  2704.    mkdir -p "$tempdir/ubuntu"
  2705.    cp -ar "$source_tree/$module-$module_version" "$tempdir/ubuntu/"
  2706.  
  2707.    mkdir -p "$image_dir"
  2708.    rm -f "$image_dir/$image_name"
  2709.    cd "$tempdir"
  2710.    make_driver_disk_media "$image_dir/$image_name" "$tempdir"
  2711.    cd - >/dev/null
  2712.    rm -rf "$tempdir"
  2713.    echo $""
  2714.    echo $"Disk image location: $dkms_tree/$module/$module_version/driver_disk/$image_name"
  2715.    echo $""
  2716.    echo $"DKMS: mkdriverdisk Completed."
  2717. }
  2718.  
  2719. make_tarball()
  2720. {
  2721.     setup_kernels_arches "mktarball"
  2722.  
  2723.     make_common_test "mktarball"
  2724.  
  2725.     # Check for dkms_dbversion
  2726.     if ! [ -e "$dkms_tree/dkms_dbversion" ]; then
  2727.         echo $"" >&2
  2728.         echo $"Could not find the file $dkms_tree/dkms_dbversion." >&2
  2729.         echo $"Creating w/ default contents." >&2
  2730.         echo "2.0.0" > $dkms_tree/dkms_dbversion
  2731.     fi
  2732.  
  2733.     # Error out if archive_location is set and contains a "/" in it
  2734.     case "$archive_location" in
  2735.         */*)
  2736.         echo $"" >&2
  2737.         echo $"Error!  The name you have specified for your tarball contains a '/'." >&2
  2738.         echo $"You may only specify a simple filename with no preceding path."
  2739.         exit 7
  2740.         ;;
  2741.     esac
  2742.  
  2743.     # Error out if binaries-only is set and source-only is set
  2744.     if [ -n "$binaries_only" ] && [ -n "$source_only" ]; then
  2745.         echo $"" >&2
  2746.         echo $"Error!  You have specified both --binaries-only and --source-only." >&2
  2747.         echo $"You cannot do this." >&2
  2748.         exit 8
  2749.     fi
  2750.  
  2751.     # Read the conf file
  2752.     read_conf "${kernelver_array[0]}" "${arch_array[0]}"
  2753.     if [ "$?" -ne 0 ]; then
  2754.         echo $"" >&2
  2755.         echo $"Error! Bad conf file." >&2
  2756.         echo $"Your dkms.conf is not valid." >&2
  2757.         exit 5
  2758.     fi
  2759.  
  2760.     temp_dir_name=`mktemp -d $tmp_location/dkms.XXXXXX`
  2761.     mkdir -p $temp_dir_name/dkms_main_tree
  2762.  
  2763.     if [ -n "$source_only" ]; then
  2764.     kernel_version_list="source-only"
  2765.     else
  2766.     local i=0
  2767.     while [ $i -lt ${#kernelver_array[@]} ]; do
  2768.  
  2769.         if ! [ -d "$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}" ]; then
  2770.             echo $"" >&2
  2771.             echo $"Error! No modules built for ${kernelver_array[$i]} (${arch_array[$i]})." >&2
  2772.             echo $"Modules must already be in the built state before using mktarball." >&2
  2773.             rm -rf "$temp_dir_name" 2>/dev/null
  2774.             exit 6
  2775.         fi
  2776.  
  2777.         set_module_suffix "${kernelver_array[$i]}"
  2778.  
  2779.         echo "Marking modules for ${kernelver_array[$i]} (${arch_array[$i]}) for archiving..."
  2780.         if [ -z "$kernel_version_list" ]; then
  2781.         kernel_version_list="kernel${kernelver_array[$i]}-${arch_array[$i]}"
  2782.         else
  2783.         kernel_version_list="${kernel_version_list}-kernel${kernelver_array[$i]}-${arch_array[$i]}"
  2784.         fi
  2785.         mkdir -p "$temp_dir_name/dkms_main_tree/${kernelver_array[$i]}/${arch_array[$i]}"
  2786.         cp -rf "$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}" "$temp_dir_name/dkms_main_tree/${kernelver_array[$i]}"
  2787.  
  2788.         i=$(($i + 1))
  2789.     done
  2790.     fi
  2791.  
  2792.     # Store the dkms_dbversion in the tarball
  2793.     cp -f "$dkms_tree/dkms_dbversion" "$temp_dir_name/dkms_main_tree/"
  2794.  
  2795.     # Copy the source_tree or make special binaries-only structure
  2796.     if [ -z "$binaries_only" ]; then
  2797.     echo $""
  2798.     echo $"Marking $dkms_tree/$module/$module_version/source for archiving..."
  2799.     mkdir -p $temp_dir_name/dkms_source_tree
  2800.     cp -rf $dkms_tree/$module/$module_version/source/* $temp_dir_name/dkms_source_tree
  2801.     else
  2802.     echo $""
  2803.     echo $"Creating special tarball structure to accomodate only binaries."
  2804.     mkdir $temp_dir_name/dkms_binaries_only
  2805.     echo "$module" > $temp_dir_name/dkms_binaries_only/PACKAGE_NAME
  2806.     echo "$module_version" > $temp_dir_name/dkms_binaries_only/PACKAGE_VERSION
  2807.     [ -z "$conf" ] && conf="$dkms_tree/$module/$module_version/source/dkms.conf"
  2808.     cp -f $conf $temp_dir_name/dkms_binaries_only/ 2>/dev/null
  2809.     fi
  2810.  
  2811.     # Make the tarball
  2812.     cd $temp_dir_name
  2813.     if [ `echo $kernel_version_list | wc -m | awk {'print $1'}` -gt 200 ]; then
  2814.     kernel_version_list="manykernels"
  2815.     fi
  2816.     local tarball_name="$module-$module_version-$kernel_version_list.dkms.tar.gz"
  2817.     [ -n "$archive_location" ] && tarball_name="$archive_location"
  2818.     tar -czf $temp_dir_name/$tarball_name ./* 2>/dev/null
  2819.     cd - >/dev/null
  2820.     if [ "$?" -eq 0 ]; then
  2821.         echo $""
  2822.         mkdir -p $dkms_tree/$module/$module_version/tarball 2>/dev/null
  2823.         mv -f $temp_dir_name/$tarball_name $dkms_tree/$module/$module_version/tarball/
  2824.     echo $""
  2825.     echo $"Tarball location: $dkms_tree/$module/$module_version/tarball/$tarball_name"
  2826.     echo $""
  2827.         echo $"DKMS: mktarball Completed."
  2828.         rm -rf $temp_dir_name
  2829.     else
  2830.         echo $"" >&2
  2831.         echo $"Error! Failed to make tarball." >&2
  2832.         rm -rf $temp_dir_name
  2833.         exit 6
  2834.     fi
  2835. }
  2836.  
  2837. load_tarball()
  2838. {
  2839.     setup_kernels_arches "mktarball"
  2840.  
  2841.     # Error out of --archive was not set with the tarball location
  2842.     if [ -z "$archive_location" ]; then
  2843.     echo $"" >&2
  2844.     echo $"Error! Invalid number of parameters passed." >&2
  2845.     echo $"Usage: ldtarball --archive=<tarball-location>" >&2
  2846.     exit 1
  2847.     fi
  2848.  
  2849.     # Error out if $archive_location does not exist
  2850.     if ! [ -e "$archive_location" ]; then
  2851.     echo $"" >&2
  2852.     echo $"Error! Cannot locate $archive_location." >&2
  2853.     echo $"File does not exist." >&2
  2854.     exit 2
  2855.     fi
  2856.  
  2857.     # Figure out what kind of archive it is (tar.gz, tar, tar.bz, etc)
  2858.     local tar_options=""
  2859.     if `gzip -t $archive_location 2>/dev/null`; then
  2860.     tar_options="${tar_options}z"
  2861.     fi
  2862.     if `bzip2 -t $archive_location 2>/dev/null`; then
  2863.     tar_options="${tar_options}j"
  2864.     fi
  2865.  
  2866.     # Untar it into $tmp_location
  2867.     local temp_dir_name=`mktemp -d $tmp_location/dkms.XXXXXX`
  2868.     tar -${tar_options}xf $archive_location -C $temp_dir_name
  2869.  
  2870.     # Check that dkms_dbversion is not a future version
  2871.     db_from_tarball="`cat $temp_dir_name/dkms_main_tree/dkms_dbversion 2>/dev/null`"
  2872.     db_from_dkms="`cat $dkms_tree/dkms_dbversion 2>/dev/null`"
  2873.     if [ -n "$db_from_tarball" ] && [ -n "$db_from_dkms" ]; then
  2874.     if [[ $(VER "$db_from_tarball") > $(VER "$db_from_dkms") ]]; then
  2875.         echo $"" >&2
  2876.         echo $"Error! The tarball you are trying to load indicates it is database version" >&2
  2877.         echo $"$db_from_tarball.  This version of DKMS only supports $db_from_dkms or lower.">&2
  2878.         rm -rf $temp_dir_name
  2879.         exit 9
  2880.     fi
  2881.     fi
  2882.  
  2883.     # Make sure its a sane tarball
  2884.     PACKAGE_NAME=""
  2885.     PACKAGE_VERSION=""
  2886.     local is_from_mktarball=""
  2887.     local is_binaries_only=""
  2888.     local is_not_arch_aware=""
  2889.     if ! [ -d "$temp_dir_name/dkms_main_tree" ]; then
  2890.     conf=`find $temp_dir_name/ -name dkms.conf 2>/dev/null | head -n 1`
  2891.     if [ -z "$conf" ]; then
  2892.         echo $"" >&2
  2893.         echo $"Error! Tarball does not appear to be a correctly formed" >&2
  2894.         echo $"DKMS archive. No dkms.conf found within it." >&2
  2895.         rm -rf $temp_dir_name
  2896.         exit 3
  2897.     fi
  2898.     read_conf "${kernelver_array[0]}" "${arch_array[0]}" "$conf"
  2899.     if [ "$?" -ne 0 ]; then
  2900.         echo $"" >&2
  2901.         echo $"Error! Bad conf file." >&2
  2902.         echo $"File: $conf does not represent a valid dkms.conf file" >&2
  2903.         rm -rf $temp_dir_name
  2904.         exit 4
  2905.     fi
  2906.     tarball_source_tree_name=`echo $conf | sed "s#$temp_dir_name\/##" | sed 's/dkms.conf//' | sed 's/\/$//'`
  2907.     elif ! [ -d "$temp_dir_name/dkms_source_tree" ] && [ -d "$temp_dir_name/dkms_binaries_only" ]; then
  2908.     PACKAGE_NAME=`cat $temp_dir_name/dkms_binaries_only/PACKAGE_NAME 2>/dev/null`
  2909.     PACKAGE_VERSION=`cat $temp_dir_name/dkms_binaries_only/PACKAGE_VERSION 2>/dev/null`
  2910.     if [ -z "$PACKAGE_NAME" ] || [ -z "$PACKAGE_VERSION" ]; then
  2911.         echo $"" >&2
  2912.         echo $"Error! Tarball does not appear to be a correctly formed" >&2
  2913.         echo $"DKMS archive." >&2
  2914.         rm -rf $temp_dir_name
  2915.         exit 5
  2916.     fi
  2917.     if [ "`$0 status -m $PACKAGE_NAME -v $PACKAGE_VERSION 2>/dev/null`" == "" ]; then
  2918.         if [ -e "$temp_dir_name/dkms_binaries_only/dkms.conf" ]; then
  2919.         echo $""
  2920.         echo $"Binaries-only DKMS tarball to be loaded for $PACKAGE_NAME-$PACKAGE_VERSION"
  2921.         echo $"even though source for this module is not added to the DKMS tree.  "
  2922.                 echo $"<<<<WARNING>>>>"
  2923.         echo $"This will allow you to install the pre-built binaries contained within this"
  2924.         echo $"tarball, but will prevent you from building new modules for other kernels."
  2925.         echo $""
  2926.         . $temp_dir_name/dkms_binaries_only/dkms.conf 2>/dev/null
  2927.         else
  2928.         echo $"" >&2
  2929.         echo $"Binaries-only DKMS tarball does not seem to contain a dkms.conf file for" >&2
  2930.         echo $"this module.  Unable to load this tarball into the DKMS tree." >&2
  2931.         exit 7
  2932.         fi
  2933.     fi
  2934.     is_from_mktarball="true"
  2935.     is_binaries_only="true"
  2936.     elif [ -d "$temp_dir_name/dkms_source_tree" ]; then
  2937.     . $temp_dir_name/dkms_source_tree/dkms.conf 2>/dev/null
  2938.     if [ -z "$PACKAGE_NAME" ] || [ -z "$PACKAGE_VERSION" ]; then
  2939.         echo $"" >&2
  2940.         echo $"Error! Tarball does not appear to be a correctly formed" >&2
  2941.         echo $"DKMS archive." >&2
  2942.         rm -rf $temp_dir_name
  2943.         exit 8
  2944.     fi
  2945.     is_from_mktarball="true"
  2946.     tarball_source_tree_name="dkms_source_tree"
  2947.     else
  2948.     echo $"" >&2
  2949.     echo $"Error! Tarball does not appear to be a correctly formed" >&2
  2950.     echo $"DKMS archive." >&2
  2951.     rm -rf $temp_dir_name
  2952.     exit 8
  2953.     fi
  2954.  
  2955.     # Is tarball from before DKMS 2.0 (prior to arch support)
  2956.     if [ "$is_from_mktarball" == "true" ] && ! [ -e "$temp_dir_name/dkms_main_tree/dkms_dbversion" ]; then
  2957.     is_not_arch_aware="true"
  2958.     echo $"" >&2
  2959.     echo $"Warning!  This tarball was created with dkms < 2.0 and contains" >&2
  2960.     echo $"no arch info. DKMS will assume the arch: ${arch_array[0]}" >&2
  2961.     fi
  2962.  
  2963.     # Make sure we got what we needed from the tarball
  2964.     module="$PACKAGE_NAME"
  2965.     module_version="$PACKAGE_VERSION"
  2966.  
  2967.     echo $""
  2968.     echo $"Loading tarball for module: $module / version: $module_version"
  2969.     echo $""
  2970.  
  2971.     # Load the source from the tarball or build it's structure (for binaries only)
  2972.     if [ -z "$is_binaries_only" ]; then
  2973.     if [ "`$0 status -m $module -v $module_version 2>/dev/null`" != "" ] && [ -z "$force" ]; then
  2974.         echo $"Warning! Source for $module-$module_version already exists.  Skipping..." >&2
  2975.     else
  2976.         echo $"Loading $source_tree/$module-$module_version..."
  2977.         rm -rf $source_tree/$module-$module_version
  2978.         mkdir -p $source_tree/$module-$module_version
  2979.         cp -rf $temp_dir_name/$tarball_source_tree_name/* $source_tree/$module-$module_version
  2980.     fi
  2981.  
  2982.     mkdir -p $dkms_tree/$module/$module_version
  2983.     else
  2984.         echo $"Creating $dkms_tree/$module/$module_version/source"
  2985.     mkdir -p $dkms_tree/$module/$module_version/source
  2986.     echo $"Copying dkms.conf to $dkms_tree/$module/$module_version/source..."
  2987.     cp -rf $temp_dir_name/dkms_binaries_only/dkms.conf $dkms_tree/$module/$module_version/source
  2988.     fi
  2989.  
  2990.     # Load kernel directories
  2991.     [ -n "$is_not_arch_aware" ] && dirs_to_load=`find $temp_dir_name/dkms_main_tree -type d -maxdepth 1 -mindepth 1 2>/dev/null`
  2992.     [ -z "$is_not_arch_aware" ] && dirs_to_load=`find $temp_dir_name/dkms_main_tree -type d -maxdepth 2 -mindepth 2 2>/dev/null`
  2993.     for directory in $dirs_to_load; do
  2994.     dirs_to_parse=`echo $directory | sed "s#.*dkms_main_tree/##"`
  2995.     kernel_to_load=`echo $dirs_to_parse | sed "s#/.*##"`
  2996.     # arch_to_load="${arch_array[0]##*/}"
  2997.         [ `echo $dirs_to_parse | grep -c "/"` -gt 0 ] && arch_to_load=`echo $dirs_to_parse | sed "s#.*/##"` || arch_to_load="${arch_array[0]}"
  2998.  
  2999.         dkms_dir_location="$dkms_tree/$module/$module_version/$kernel_to_load/$arch_to_load"
  3000.  
  3001.  
  3002.     dkms_dir_location="$dkms_tree/$module/$module_version/$kernel_to_load/$arch_to_load"
  3003.     if [ -d "$dkms_dir_location" ] && [ -z "$force" ]; then
  3004.         echo $"Warning! $dkms_dir_location already exists.  Skipping..." >&2
  3005.     else
  3006.         echo $"Loading $dkms_dir_location..."
  3007.         rm -rf $dkms_dir_location
  3008.         mkdir -p $dkms_dir_location
  3009.         cp -rf $directory/* $dkms_dir_location/
  3010.     fi
  3011.     done
  3012.  
  3013.     # Create source symlink (if there isn't a real directory there)
  3014.     if [ ! -h "$dkms_tree/$module/$module_version/source" ] && \
  3015.        [ ! -d "$dkms_tree/$module/$module_version/source" ] || [ ! -z "$force" ]; then
  3016.     echo $"Creating $dkms_tree/$module/$module_version/source symlink..."
  3017.     rm -f "$dkms_tree/$module/$module_version/source"
  3018.     ln -s "$source_tree/$module-$module_version" "$dkms_tree/$module/$module_version/source"
  3019.     fi
  3020.  
  3021.     # Clean up /tmp
  3022.     rm -rf $temp_dir_name
  3023.  
  3024.     echo $""
  3025.     echo $"DKMS: ldtarball Completed."
  3026. }
  3027.  
  3028. run_match ()
  3029. {
  3030.     setup_kernels_arches "match"
  3031.     set_kernel_source_dir "${kernelver_array[0]}"
  3032.  
  3033.     # Error if $template_kernel is unset
  3034.     if [ -z "$template_kernel" ]; then
  3035.     echo $"" >&2
  3036.     echo $"Error! Invalid number of parameters passed." >&2
  3037.     echo $"Usage: match --templatekernel=<kernel-version> -k <kernel-version>" >&2
  3038.     echo $"   or: match --templatekernel=<kernel-version> -k <kernel-version> -m <module>" >&2
  3039.     exit 1
  3040.     fi
  3041.  
  3042.     # Error out if $template_kernel = $kernel_version
  3043.     if [ "$template_kernel" == "${kernelver_array[0]}" ]; then
  3044.     echo $"" >&2
  3045.     echo $"Error! The templatekernel and the specified kernel version are the same." >&2
  3046.     exit 2
  3047.     fi
  3048.  
  3049.     # Read in the status of template_kernel
  3050.     local template_kernel_status=`$0 status -k $template_kernel -a ${arch_array[0]} | grep ": installed"`
  3051.  
  3052.     # If $module is set, grep the status only for that module
  3053.     if [ -n "$module" ]; then
  3054.  
  3055.         # Make sure that its installed in the first place
  3056.     if ! [ -d "$dkms_tree/$module/" ]; then
  3057.         echo $"" >&2
  3058.         echo $"Error! The module: $module is not located in the DKMS tree." >&2
  3059.         exit 3
  3060.     fi
  3061.  
  3062.     template_kernel_status=`echo "$template_kernel_status" | grep "^$module,"`
  3063.     fi
  3064.  
  3065.     echo $""
  3066.     echo $"Matching modules in kernel: ${kernelver_array[0]} (${arch_array[0]})"
  3067.     echo $"to the configuration of kernel: $template_kernel (${arch_array[0]})"
  3068.  
  3069.     # Prepare the kernel just once but only if there is actual work to do
  3070.     if [ -z "$template_kernel_status" ]; then
  3071.     echo $""
  3072.     echo $"There is nothing to be done for this match."
  3073.     else
  3074.     prepare_kernel "${kernelver_array[0]}" "${arch_array[0]}"
  3075.  
  3076.         # Iterate over the kernel_status and match kernel to the template_kernel
  3077.     while read template_line; do
  3078.         template_module=`echo "$template_line" | awk {'print $1'} | sed 's/,$//'`
  3079.         template_version=`echo "$template_line" | awk {'print $2'} | sed 's/,$//'`
  3080.  
  3081.         # Print out a match header
  3082.         echo $""
  3083.         echo $"---- Match Beginning ----"
  3084.         echo $"Module:  $template_module"
  3085.         echo $"Version: $template_version"
  3086.         echo $"-------------------------"
  3087.  
  3088.         # Figure out what to do from here
  3089.         if $0 status -m "$template_module" -v "$template_version" -k "${kernelver_array[0]}" -a "${arch_array[0]}" 2>/dev/null | grep -q ": installed"; then
  3090.         echo $""
  3091.         echo $"This module/version combo is already installed.  Nothing to be done."
  3092.         elif $0 status -m "$template_module" -v "$template_version" -k "${kernelver_array[0]}" -a "${arch_array[0]}" 2>/dev/null | grep -q ": built"; then
  3093.         echo $""
  3094.         echo $"This module/version combo is built.  Installing it:"
  3095.         module="$template_module"
  3096.         module_version="$template_version"
  3097.         install_module
  3098.         else
  3099.         echo $""
  3100.         echo $"Building & Installing this module/version:"
  3101.         module="$template_module"
  3102.         module_version="$template_version"
  3103.         build_module
  3104.         install_module
  3105.         fi
  3106.     done < <(echo "$template_kernel_status")
  3107.  
  3108.         # Clean up the kernel tree
  3109.     if [[ ! ( $(VER ${kernelver_array[0]}) < $(VER 2.6.6) ) && \
  3110.         -d "$kernel_source_dir" && \
  3111.         ! -h "$kernel_source_dir" && \
  3112.         -z "$ksourcedir_fromcli" ]]; then
  3113.         echo $"Kernel cleanup unnecessary for this kernel.  Skipping..."
  3114.     elif [ -z "$no_clean_kernel" ]; then
  3115.         cd "$kernel_source_dir"
  3116.         [ -z "$kerneldoth_contents" ] && invoke_command "make mrproper" "cleaning kernel tree (make mrproper)" background
  3117.         [ -n "$config_contents" ] && echo "$config_contents" > .config
  3118.         [ -n "$kerneldoth_contents" ] && echo "$kerneldoth_contents" > /boot/kernel.h
  3119.         cd - >/dev/null
  3120.     fi
  3121.     fi
  3122.  
  3123.     # Done
  3124.     echo $""
  3125.     echo $"DKMS: match Completed."
  3126. }
  3127.  
  3128. make_rpm()
  3129. {
  3130.     setup_kernels_arches "mkrpm"
  3131.  
  3132.     make_common_test "mkrpm"
  3133.  
  3134.     # Check that the rpmbuild command is present
  3135.     if ! which rpmbuild >/dev/null 2>&1 ; then
  3136.         echo $"" >&2
  3137.         echo $"Error! rpmbuild not present." >&2
  3138.         echo $"Install the rpm-build package." >&2
  3139.         exit 1
  3140.     fi
  3141.  
  3142.     # Read the conf file
  3143.     read_conf "${kernelver_array[0]}" "${arch_array[0]}"
  3144.     if [ "$?" -ne 0 ]; then
  3145.         echo $"" >&2
  3146.         echo $"Error! Bad conf file." >&2
  3147.         echo $"Your dkms.conf is not valid." >&2
  3148.         exit 4
  3149.     fi
  3150.  
  3151.     local rpm_basedir="$dkms_tree/$module/$module_version/rpm"
  3152.  
  3153.     echo $""
  3154.     if [ -e "$dkms_tree/$module/$module_version/source/$module-dkms-mkrpm.spec" ]; then
  3155.     echo $"Using $dkms_tree/$module/$module_version/source/$module-dkms-mkrpm.spec"
  3156.     SPECFILE="$dkms_tree/$module/$module_version/source/$module-dkms-mkrpm.spec"
  3157.     elif [ -e "/etc/dkms/template-dkms-mkrpm.spec" ]; then
  3158.     echo $"Using /etc/dkms/template-dkms-mkrpm.spec"
  3159.     SPECFILE="/etc/dkms/template-dkms-mkrpm.spec"
  3160.     else
  3161.     echo $"" >&2
  3162.     echo $"Cannot find /etc/dkms/template-dkms-mkrpm.spec which is needed by" >&2
  3163.     echo $"DKMS in order use mkrpm." >&2
  3164.     exit 5
  3165.     fi
  3166.  
  3167.     # Error out if binaries-only is set and source-only is set
  3168.     if [ -n "$binaries_only" ] && [ -n "$source_only" ]; then
  3169.         echo $"" >&2
  3170.         echo $"Error!  You have specified both --binaries-only and --source-only." >&2
  3171.         echo $"You cannot do this." >&2
  3172.         exit 8
  3173.     fi
  3174.  
  3175.     # Run a dkms mktarball for use in the rpm
  3176.     local mktarball_line
  3177.     if [ ! -n "$source_only" ] || [ -n "$binaries_only" ]; then
  3178.     mktarball_line="--binaries-only"
  3179.     local i=0
  3180.     echo $""
  3181.     while [ $i -lt ${#kernelver_array[@]} ]; do
  3182.         if ! [ -d "$dkms_tree/$module/$module_version/${kernelver_array[$i]}/${arch_array[$i]}" ]; then
  3183.         echo $"" >&2
  3184.         echo $"You do not seem to have $module $module_version built for" >&2
  3185.         echo $"${kernelver_array[$i]} (${arch_array[$i]}).  All modules must be in" >&2
  3186.         echo $"the built state before you can use mkrpm." >&2
  3187.         exit 5
  3188.         fi
  3189.         echo $"Marking ${kernelver_array[$i]} (${arch_array[$i]}) for RPM..."
  3190.         mktarball_line="-k ${kernelver_array[$i]} -a ${arch_array[$i]} $mktarball_line"
  3191.         i=$(($i + 1))
  3192.     done
  3193.     else
  3194.         mktarball_line="none"
  3195.     fi
  3196.  
  3197.     local RC=0
  3198.     local temp_dir_name=`mktemp -d $tmp_location/dkms.XXXXXX`
  3199.     trap 'rm -rf $temp_dir_name' EXIT HUP TERM
  3200.     mkdir -p ${temp_dir_name}/{BUILD,RPMS,SRPMS,SPECS,SOURCES}
  3201.     cp ${SPECFILE} ${temp_dir_name}/SPECS/dkms_mkrpm.spec
  3202.  
  3203.     #if using legacy mode, install common postinst
  3204.     if [ "$legacy_postinst" != "0" ]; then
  3205.         invoke_command "cp '$PREFIX/usr/lib/dkms/common.postinst' '${temp_dir_name}/SOURCES'" "copying legacy postinstall template"
  3206.     fi
  3207.  
  3208.     #Copy in the source tree
  3209.     if [ ! -n "$binaries_only" ]; then
  3210.         invoke_command "cp -Lpr '$dkms_tree/$module/$module_version/source' '${temp_dir_name}/SOURCES/$module-$module_version'" "Copying source tree"
  3211.     fi
  3212.  
  3213.     invoke_command "LC_ALL=C rpmbuild --define \"_topdir ${temp_dir_name}\" --define \"version $module_version\" --define \"module_name $module\" --define \"kernel_versions ${kernelver_array[*]}\" --define \"mktarball_line $mktarball_line\" --define \"__find_provides  /usr/lib/dkms/find-provides\" --define \"_use_internal_dependency_generator 0\" -ba ${temp_dir_name}/SPECS/dkms_mkrpm.spec > ${temp_dir_name}/rpmbuild.log 2>&1" "rpmbuild"
  3214.     if [ "$?" -eq 0 ]; then
  3215.     mkdir -p ${rpm_basedir}
  3216.     cp -a ${temp_dir_name}/SRPMS/* ${temp_dir_name}/RPMS/*/* ${rpm_basedir}/
  3217.     echo $""
  3218.     cat ${temp_dir_name}/rpmbuild.log | grep ^Wrote | sed -e "s:${temp_dir_name}/:${rpm_basedir}/:" -e 's:SRPMS/::' -e 's:RPMS/.*/::'
  3219.     echo $""
  3220.         echo $"DKMS: mkrpm Completed."
  3221.     else
  3222.     echo $"" >&2
  3223.     echo $"Error! There was a problem creating your rpm." >&2
  3224.     cat ${temp_dir_name}/rpmbuild.log >&2
  3225.     RC=7
  3226.     fi
  3227.     rm -rf $temp_dir_name
  3228.     trap > /dev/null 2>&1
  3229.     [ ${RC} -ne 0 ] && exit ${RC}
  3230. }
  3231.  
  3232. function preproc_file()
  3233. {
  3234.     local date_str="$(date -R)"
  3235.     echo "modifying $1..."
  3236.     sed -e "s/DEBIAN_PACKAGE/$debian_package/g" \
  3237.         -e "s/MODULE_NAME/$module/g" \
  3238.         -e "s/MODULE_VERSION/$module_version/g" \
  3239.         -e "s/DATE_STAMP/$date_str/" "$1" > "$1.dkms-pp"
  3240.     mv "$1.dkms-pp" "$1"
  3241. }
  3242.  
  3243. function make_debian_test_depends()
  3244. {
  3245.     INSTALL_PACKAGES=""
  3246.     # Check that the fakeroot command is present
  3247.     if ! which fakeroot >/dev/null 2>&1 ; then
  3248.         INSTALL_PACKAGES="fakeroot $INSTALL_PACKAGES"
  3249.     fi
  3250.  
  3251.     # Check that the dh_make command is present
  3252.     if ! which dpkg-buildpackage >/dev/null 2>&1 ; then
  3253.         INSTALL_PACKAGES="dpkg-dev $INSTALL_PACKAGES"
  3254.     fi
  3255.     echo "$INSTALL_PACKAGES"
  3256. }
  3257.  
  3258. function make_debian()
  3259. {
  3260.     create_type="$1"
  3261.  
  3262.     create_temporary_trees
  3263.     trap "delete_temporary_trees" EXIT HUP TERM
  3264.  
  3265.     make_common_test "mk${create_type}"
  3266.  
  3267.     debian_package=$(echo $module | sed s/_/-/g)
  3268.  
  3269.     SYNAPTIC=""
  3270.     #Synaptic availablity
  3271.     if [ -x /usr/sbin/synaptic ]; then
  3272.         SYNAPTIC="TRUE"
  3273.     fi
  3274.  
  3275.     #test who we are
  3276.     ROOT=""
  3277.     if [ "$USER" != "root" ]; then
  3278.         if [ -x /usr/sbin/su-to-root ]; then
  3279.             ROOT="/usr/sbin/su-to-root -c"
  3280.         elif [ -x /usr/bin/gksudo ] && [ ! -z "$DISPLAY" ]; then
  3281.             ROOT="/usr/bin/gksudo --description 'DKMS Debian package builder' "
  3282.         elif [ -x /usr/bin/kdesu ] && [ ! -z "$DISPLAY" ]; then
  3283.             ROOT="/usr/bin/kdesu"
  3284.         elif [ -x /usr/bin/sudo ]; then
  3285.             ROOT="/usr/bin/sudo"
  3286.         fi
  3287.     fi
  3288.  
  3289.     # Read the conf file
  3290.     read_conf "${kernelver_array[0]}" "${arch_array[0]}"
  3291.     if [ "$?" -ne 0 ]; then
  3292.         echo $"" >&2
  3293.         echo $"Error! Bad conf file." >&2
  3294.         echo $"Your dkms.conf is not valid." >&2
  3295.         exit 4
  3296.     fi
  3297.  
  3298.     #test if we are missing dependencies that are needed during package build
  3299.     INSTALL_PACKAGES="`make_debian_test_depends`"
  3300.     if [ ! -z "$INSTALL_PACKAGES" ]; then
  3301.         if [ -z "$ROOT" ]; then
  3302.             echo $"" >&2
  3303.             echo $"Error! Missing $INSTALL_PACKAGES" >&2
  3304.             echo $"and unable to install.  Please ask an admin to install for you." >&2
  3305.             exit 4
  3306.         fi
  3307.         if [ ! -z "$SYNAPTIC" ] && [ ! -z "$DISPLAY" ]; then
  3308.             local TEMPFILE=`/bin/tempfile`
  3309.             echo $INSTALL_PACKAGES | sed 's/|/\ install\/g' > $TEMPFILE
  3310.             $ROOT "sh -c '/usr/sbin/synaptic --set-selections --non-interactive --hide-main-window < $TEMPFILE'"
  3311.             trap "rm -f $TEMPFILE; delete_temporary_trees" EXIT HUP TERM
  3312.         else
  3313.             $ROOT apt-get -y install $INSTALL_PACKAGES
  3314.         fi
  3315.  
  3316.         INSTALL_PACKAGES="`make_debian_test_depends`"
  3317.         #Retest packages
  3318.         if [ ! -z "$INSTALL_PACKAGES" ]; then
  3319.             echo $"" >&2
  3320.             echo $"Error! Missing $INSTALL_PACKAGES" >&2
  3321.             echo $"and unable to install.  Please ask an admin to install for you." >&2
  3322.             exit 4
  3323.         fi
  3324.     fi
  3325.  
  3326.     #skeleton to load templates from
  3327.     local system_mk="$dkms_tree/$module/$module_version/source/$module-dkms-mk${create_type}"
  3328.     local local_mk="/etc/dkms/template-dkms-mk${create_type}"
  3329.     if [ -e "${system_mk}" ]; then
  3330.         echo $"Using ${system_mk}"
  3331.         DEBDIR=${system_mk}
  3332.     elif [ -e "${local_mk}" ]; then
  3333.         echo $"Using ${local_mk}"
  3334.         DEBDIR=${local_mk}
  3335.     else
  3336.         echo $"" >&2
  3337.         echo $"Cannot find ${local_mk} which is needed by" >&2
  3338.         echo $"DKMS in order to use mk${create_type}." >&2
  3339.         exit 5
  3340.     fi
  3341.  
  3342.     #prepare build directory and copy template
  3343.     local temp_dir=`mktemp -d $tmp_location/dkms.XXXXXX`
  3344.     trap "rm -rf $temp_dir; delete_temporary_trees" EXIT HUP TERM
  3345.     local temp_dir_debian="$temp_dir/$debian_package-dkms-$module_version"
  3346.     invoke_command "cp -ar '$DEBDIR/' '$temp_dir_debian'" "copying template"
  3347.     pushd "$temp_dir_debian" > /dev/null 2>&1
  3348.     for file in debian/*; do
  3349.         preproc_file "$file"
  3350.         chmod 755 "$file"
  3351.     done
  3352.     popd > /dev/null 2>&1
  3353.  
  3354.     #if using legacy mode, install common postinst
  3355.     if [ "$legacy_postinst" != "0" ]; then
  3356.         invoke_command "cp '$PREFIX/usr/lib/dkms/common.postinst' '$temp_dir_debian'" "copying legacy postinstall template"
  3357.     fi
  3358.  
  3359.     #Copy in the source tree
  3360.     if [ ! -n "$binaries_only" ]; then
  3361.         invoke_command "cp -Lpr '$dkms_tree/$module/$module_version/source' '$temp_dir_debian/$module-$module_version'" "Copying source tree"
  3362.     fi
  3363.  
  3364.     #Only if we are shipping binary modules, make a .tgz for the deb
  3365.     local archive_location="$module-$module_version.dkms.tar.gz"
  3366.     if [ ! -n "$source_only" ]; then
  3367.         binaries_only="binaries-only"
  3368.         invoke_command "make_tarball" "Gathering binaries"
  3369.         if [ -f $dkms_tree/$module/$module_version/tarball/$archive_location ]; then
  3370.             invoke_command "cp '$dkms_tree/$module/$module_version/tarball/$archive_location' '$temp_dir_debian'" "Copying DKMS tarball into DKMS tree"
  3371.         else
  3372.             echo $"" >&2
  3373.             echo $"Error! Unable to find created tarball." >&2
  3374.             exit 12
  3375.         fi
  3376.     fi
  3377.  
  3378.     #calculate destination directory
  3379.     deb_basedir=$dkms_tree/$module/$module_version/${create_type}
  3380.     mkdir -p ${deb_basedir} >/dev/null 2>&1
  3381.  
  3382.     #create deb
  3383.     pushd "$temp_dir_debian" > /dev/null 2>&1
  3384.     case "$create_type" in
  3385.         dsc)
  3386.             invoke_command "dpkg-buildpackage -S -us -uc 1>/dev/null" "Building source package"
  3387.         if [ "$?" -eq 0 ]; then
  3388.             echo $""
  3389.             echo $"DKMS: mk${create_type} Completed."
  3390.         else
  3391.             echo $"" >&2
  3392.             echo $"Error! There was a problem creating your ${create_type}." >&2
  3393.             exit 7
  3394.         fi
  3395.             invoke_command "mv '$temp_dir/${debian_package}-dkms_${module_version}.dsc' '$temp_dir/${debian_package}-dkms_${module_version}.tar.gz' '$deb_basedir'" "Moving built files to $deb_basedir"
  3396.             ;;
  3397.         deb)
  3398.             invoke_command "dpkg-buildpackage -rfakeroot -d -b -us -uc 1>/dev/null" "Building binary package"
  3399.             if [ "$?" -eq 0 ]; then
  3400.             echo $""
  3401.             echo $"DKMS: mk${create_type} Completed."
  3402.         else
  3403.             echo $"" >&2
  3404.             echo $"Error! There was a problem creating your ${create_type}." >&2
  3405.             exit 7
  3406.         fi
  3407.  
  3408.             invoke_command "mv '$temp_dir/${debian_package}-dkms_${module_version}_all.deb' '$deb_basedir'" "Moving built files to $deb_basedir"
  3409.             ;;
  3410.     esac
  3411.     popd > /dev/null 2>&1
  3412.  
  3413.     if in_temporary_trees; then
  3414.     echo "Copying built files to "`pwd`"/.." >&2
  3415.     cp "$dkms_tree/$module/$module_version/deb/"* ..
  3416.     fi
  3417.  
  3418.     #cleanup
  3419.     invoke_command "rm $temp_dir -fr" "Cleaning up temporary files"
  3420.     delete_temporary_trees
  3421.  
  3422.     #done
  3423.     if [ "$?" -ne 0 ]; then
  3424.         echo $"" >&2
  3425.     echo $"Error! There was a problem cleaning up temporary files." >&2
  3426.         exit 7
  3427.     fi
  3428. }
  3429.  
  3430. function make_common_test()
  3431. {
  3432.     local create_type=$1
  3433.     # Error if $module_version is set but $module is not
  3434.     if [ -z "$module" ] || [ -z "$module_version" ]; then
  3435.         echo $"" >&2
  3436.         echo $"Error! Invalid number of parameters passed." >&2
  3437.         echo $"Usage: $create_type -m <module> -v <module-version>" >&2
  3438.         exit 1
  3439.     fi
  3440.  
  3441.     # Check that source symlink works
  3442.     if ! [ -d "$dkms_tree/$module/$module_version/source" ]; then
  3443.         echo $"" >&2
  3444.         echo $"Error! DKMS tree does not contain: $module-$module_version" >&2
  3445.         echo $"Build cannot continue without the proper tree." >&2
  3446.         exit 2
  3447.     fi
  3448.  
  3449.     # Make sure that its installed in the first place
  3450.     if ! [ -d "$dkms_tree/$module/$module_version" ]; then
  3451.         echo $"" >&2
  3452.         echo $"Error! The module/version combo: $module-$module_version" >&2
  3453.         echo $"is not located in the DKMS tree." >&2
  3454.         exit 3
  3455.     fi
  3456.  
  3457.     # Error out if archive_location is set and contains a "/" in it
  3458.     case "$archive_location" in
  3459.         */*)
  3460.         echo $"" >&2
  3461.         echo $"Error!  The name you have specified for your archive contains a '/'." >&2
  3462.         echo $"You may only specify a simple filename with no preceding path."
  3463.         exit 7
  3464.         ;;
  3465.     esac
  3466.  
  3467.     # Error out if binaries-only is set and source-only is set
  3468.     if [ -n "$binaries_only" ] && [ -n "$source_only" ]; then
  3469.         echo $"" >&2
  3470.         echo $"Error!  You have specified both --binaries-only and --source-only." >&2
  3471.         echo $"You cannot do this." >&2
  3472.         exit 8
  3473.     fi
  3474. }
  3475.  
  3476. function make_kmp_srpm()
  3477. {
  3478.     local temp_dir_name=`mktemp -d $tmp_location/dkms.XXXXXX`
  3479.     trap 'rm -rf $temp_dir_name' EXIT HUP TERM
  3480.     mkdir -p $temp_dir_name/{BUILD,RPMS,SRPMS,SPECS,SOURCES}
  3481.     pushd "$dkms_tree/$module/$module_version" > /dev/null 2>&1
  3482.     # want to change name of the top-level of the tarball
  3483.     # from build to $module-$module_version
  3484.     cp -lr build ${module}-${module_version}
  3485.     tar cvjf $temp_dir_name/SOURCES/${module}-${module_version}.tar.bz2 ${module}-${module_version} > /dev/null 2>&1
  3486.     rm -rf ${module}-${module_version}
  3487.     popd > /dev/null 2>&1
  3488.     pushd "$temp_dir_name" > /dev/null 2>&1
  3489.     invoke_command "rpmbuild --define \"_topdir ${temp_dir_name}\" --target=${arch_array[0]} -bs ${SPECFILE} > ${temp_dir_name}/rpmbuild.log 2>&1" "rpmbuild"
  3490.     grep ^Wrote $temp_dir_name/rpmbuild.log > /dev/null 2>&1
  3491.     local RC="$?"
  3492.     if [ "${RC}" -eq 0 ]; then
  3493.     local kmp_basedir="$dkms_tree/$module/$module_version/rpm"
  3494.     mkdir -p $kmp_basedir
  3495.     RPMS=`LANG=C cp -va ${temp_dir_name}/SRPMS/* $kmp_basedir | awk '{print $NF}'`
  3496.     else
  3497.     echo $"rpmbuild error log:"
  3498.     cat $temp_dir_name/rpmbuild.log
  3499.     fi
  3500.     popd > /dev/null 2>&1
  3501.     rm -rf $temp_dir_name
  3502.     trap > /dev/null 2>&1
  3503.     return ${RC}
  3504. }
  3505.  
  3506.  
  3507. function make_kmp()
  3508. {
  3509.     setup_kernels_arches "mkkmp"
  3510.  
  3511.     make_common_test "mkkmp"
  3512.  
  3513.     # Read the conf file
  3514.     read_conf "${kernelver_array[0]}" "${arch_array[0]}"
  3515.     if [ "$?" -ne 0 ]; then
  3516.         echo $"" >&2
  3517.         echo $"Error! Bad conf file." >&2
  3518.         echo $"Your dkms.conf is not valid." >&2
  3519.         exit 4
  3520.     fi
  3521.  
  3522.     echo $""
  3523.     if [ -n "$specfile" -a -e "$dkms_tree/$module/$module_version/source/$specfile" ]; then
  3524.     echo $"Using $dkms_tree/$module/$module_version/source/$specfile"
  3525.     SPECFILE="$dkms_tree/$module/$module_version/source/$specfile"
  3526.     elif [ -e "$dkms_tree/$module/$module_version/source/$module-kmp.spec" ]; then
  3527.     echo $"Using $dkms_tree/$module/$module_version/source/$module-kmp.spec"
  3528.     SPECFILE="$dkms_tree/$module/$module_version/source/$module-kmp.spec"
  3529.     else
  3530.     echo $"" >&2
  3531.     echo $"Cannot find a suitable spec file which is needed by" >&2
  3532.     echo $"DKMS in order use mkkmp.  Please specify --spec=specfile." >&2
  3533.     exit 5
  3534.     fi
  3535.  
  3536.     prepare_build
  3537.     make_kmp_srpm
  3538.     RC=$?
  3539.     clean_build
  3540.  
  3541.     if [ "$RC" -eq 0 ]; then
  3542.     echo $""
  3543.     echo $"KMP SRPM location: $RPMS"
  3544.     echo $""
  3545.         echo $"DKMS: mkkmp Completed."
  3546.     else
  3547.     echo $"" >&2
  3548.     echo $"Error! There was a problem creating your KMP source rpm." >&2
  3549.     exit 7
  3550.     fi
  3551.     # FIXME: hand SRPM to mock or build system to build
  3552. }
  3553.  
  3554. #############################
  3555. ####                     ####
  3556. #### Program Starts Here ####
  3557. ####                     ####
  3558. #############################
  3559.  
  3560. # Set Path
  3561. case ":$PATH:" in
  3562.     :/usr/sbin:)
  3563.     ;;
  3564.     *)
  3565.     PATH="$PATH:/usr/sbin"
  3566.     ;;
  3567. esac
  3568. case ":$PATH:" in
  3569.     :/sbin:)
  3570.     ;;
  3571.     *)
  3572.     PATH="$PATH:/sbin"
  3573.     ;;
  3574. esac
  3575. PATH="$PATH:/usr/lib/dkms"
  3576.  
  3577. # Set important variables
  3578. current_kernel=`uname -r`
  3579. dkms_tree="/var/lib/dkms"
  3580. source_tree="/usr/src"
  3581. install_tree="/lib/modules"
  3582. tmp_location="/tmp"
  3583. verbose=""
  3584. dkms_frameworkconf="/etc/dkms/framework.conf"
  3585.  
  3586. # these can come from the environment or the config file
  3587. [ -z "${ADDON_MODULES_DIR}" -a -e /etc/sysconfig/module-init-tools ] && . /etc/sysconfig/module-init-tools
  3588. addon_modules_dir="${ADDON_MODULES_DIR}"
  3589. [ -z "${addon_modules_dir}" ] && running_distribution="$(distro_version)"
  3590. weak_modules="${WEAK_MODULES_BIN}"
  3591.  
  3592. # Source in /etc/dkms_framework.conf
  3593. . $dkms_frameworkconf 2>/dev/null
  3594.  
  3595. # Clear out command line argument variables
  3596. module=""
  3597. module_version=""
  3598. template_kernel=""
  3599. distro=""
  3600. media=""
  3601. release=""
  3602. conf=""
  3603. kernel_config=""
  3604. archive_location=""
  3605. kernel_source_dir=""
  3606. ksourcedir_fromcli=""
  3607. action=""
  3608. force=""
  3609. no_prepare_kernel=""
  3610. no_clean_kernel=""
  3611. binaries_only=""
  3612. source_only=""
  3613. all=""
  3614. module_suffix=""
  3615. rpm_safe_upgrade=""
  3616. size="1440";
  3617. specfile=""
  3618. legacy_postinst="1"
  3619. unset directive_array
  3620. unset kernelver_array
  3621. unset arch_array
  3622.  
  3623. # Parse command line arguments
  3624. while [ $# -gt 0 ]; do
  3625.     case $1 in
  3626.     --dkmsframework*)
  3627.         if echo $1 | grep '=' >/dev/null ; then
  3628.             dkms_frameworkconf=`echo $1 | sed 's/^.*=//'`
  3629.         else
  3630.             dkms_frameworkconf="$2"
  3631.             shift
  3632.         fi
  3633.         #immediately load this config
  3634.         . $dkms_frameworkconf 2> /dev/null
  3635.         ;;
  3636.     --module*|-m)
  3637.         if echo $1 | grep '=' >/dev/null ; then
  3638.             module=`echo $1 | sed 's/^.*=//'`
  3639.         else
  3640.             module="$2"
  3641.             shift
  3642.         fi
  3643.         ;;
  3644.     -v)
  3645.         if echo $1 | grep '=' >/dev/null ; then
  3646.             module_version=`echo $1 | sed 's/^.*=//'`
  3647.         else
  3648.             module_version="$2"
  3649.             shift
  3650.         fi
  3651.         ;;
  3652.     --kernelver*|-k)
  3653.         if echo $1 | grep '=' >/dev/null ; then
  3654.             kernelver_array[${#kernelver_array[@]}]=`echo $1 | sed 's/^.*=//'`
  3655.         else
  3656.             kernelver_array[${#kernelver_array[@]}]="$2"
  3657.             shift
  3658.         fi
  3659.         ;;
  3660.     --distro*|-d)
  3661.         if echo $1 | grep '=' >/dev/null ; then
  3662.             distro=`echo $1 | sed 's/^.*=//'`
  3663.         else
  3664.             distro="$2"
  3665.             shift
  3666.         fi
  3667.         ;;
  3668.     --media*)
  3669.         if echo $1 | grep '=' >/dev/null ; then
  3670.             media=`echo $1 | sed 's/^.*=//'`
  3671.         else
  3672.             media="$2"
  3673.             shift
  3674.         fi
  3675.         ;;
  3676.     --release*|-r)
  3677.         if echo $1 | grep '=' >/dev/null ; then
  3678.             release=`echo $1 | sed 's/^.*=//'`
  3679.         else
  3680.             release="$2"
  3681.             shift
  3682.         fi
  3683.         ;;
  3684.     --templatekernel*)
  3685.         if echo $1 | grep '=' >/dev/null ; then
  3686.             template_kernel=`echo $1 | sed 's/^.*=//'`
  3687.         else
  3688.             template_kernel="$2"
  3689.             shift
  3690.         fi
  3691.         ;;
  3692.     -c)
  3693.         if echo $1 | grep '=' >/dev/null ; then
  3694.             conf=`echo $1 | sed 's/^.*=//'`
  3695.         else
  3696.             conf="$2"
  3697.             shift
  3698.         fi
  3699.         ;;
  3700.     --quiet|-q)
  3701.         exec >/dev/null 2>&1
  3702.         ;;
  3703.     --version|-V)
  3704.         echo $"dkms: 2.1.0.1"
  3705.         exit 0
  3706.         ;;
  3707.     --no-prepare-kernel)
  3708.         no_prepare_kernel="no-prepare-kernel"
  3709.         ;;
  3710.     --no-clean-kernel)
  3711.         no_clean_kernel="no-clean-kernel"
  3712.         ;;
  3713.     --binaries-only)
  3714.         binaries_only="binaries-only"
  3715.         ;;
  3716.     --source-only)
  3717.         source_only="source-only"
  3718.         ;;
  3719.     --force)
  3720.         force="true"
  3721.         ;;
  3722.     --all)
  3723.         all="true"
  3724.         ;;
  3725.     --verbose)
  3726.         verbose="true"
  3727.         ;;
  3728.     --rpm_safe_upgrade)
  3729.         rpm_safe_upgrade="true"
  3730.         ;;
  3731.     --dkmstree*)
  3732.         if echo $1 | grep '=' >/dev/null ; then
  3733.             dkms_tree=`echo $1 | sed 's/^.*=//'`
  3734.         else
  3735.             dkms_tree="$2"
  3736.             shift
  3737.         fi
  3738.         ;;
  3739.     --sourcetree*)
  3740.         if echo $1 | grep '=' >/dev/null ; then
  3741.             source_tree=`echo $1 | sed 's/^.*=//'`
  3742.         else
  3743.             source_tree="$2"
  3744.             shift
  3745.         fi
  3746.         ;;
  3747.     --installtree*)
  3748.         if echo $1 | grep '=' >/dev/null ; then
  3749.             install_tree=`echo $1 | sed 's/^.*=//'`
  3750.         else
  3751.             install_tree="$2"
  3752.             shift
  3753.         fi
  3754.         ;;
  3755.     --config*)
  3756.         if echo $1 | grep '=' >/dev/null ; then
  3757.             kernel_config=`echo $1 | sed 's/^.*=//'`
  3758.         else
  3759.             kernel_config="$2"
  3760.             shift
  3761.         fi
  3762.         ;;
  3763.     --archive*)
  3764.         if echo $1 | grep '=' >/dev/null ; then
  3765.             archive_location=`echo $1 | sed 's/^.*=//'`
  3766.         else
  3767.             archive_location="$2"
  3768.             shift
  3769.         fi
  3770.         ;;
  3771.     --legacy-postinst*)
  3772.         if echo $1 | grep "=" >/dev/null ; then
  3773.             legacy_postinst=`echo $1 | sed 's/^.*=//'`
  3774.         else
  3775.             legacy_postinst="$2"
  3776.             shift
  3777.         fi
  3778.         ;;
  3779.     --arch*|-a)
  3780.         if echo $1 | grep '=' >/dev/null ; then
  3781.             arch_array[${#arch_array[@]}]=`echo $1 | sed 's/^.*=//'`
  3782.         else
  3783.             arch_array[${#arch_array[@]}]="$2"
  3784.             shift
  3785.         fi
  3786.         ;;
  3787.     --size*)
  3788.         if echo $1 | grep '=' >/dev/null ; then
  3789.             size=`echo $1 | sed 's/^.*=//'`
  3790.         else
  3791.             size="$2"
  3792.             shift
  3793.         fi
  3794.         ;;
  3795.     --kernelsourcedir*)
  3796.         if echo $1 | grep '=' >/dev/null ; then
  3797.             kernel_source_dir=`echo $1 | sed 's/^.*=//'`
  3798.         else
  3799.             kernel_source_dir="$2"
  3800.             shift
  3801.         fi
  3802.         ksourcedir_fromcli="true"
  3803.         ;;
  3804.     --directive*)
  3805.         if echo $1 | grep '=' >/dev/null ; then
  3806.             directive_array[${#directive_array[@]}]=`echo $1 | sed 's/[^=]\+=//'`
  3807.         else
  3808.             directive_array[${#directive_array[@]}]="$2"
  3809.             shift
  3810.         fi
  3811.         ;;
  3812.     --spec*)
  3813.         if echo $1 | grep '=' >/dev/null ; then
  3814.             specfile=`echo $1 | sed 's/^.*=//'`
  3815.         else
  3816.             specfile="$2"
  3817.             shift
  3818.         fi
  3819.         ;;
  3820.     -*|--*)
  3821.         echo $"" >&2
  3822.         echo $"Error!  Unknown option: $1" >&2
  3823.         show_usage
  3824.         exit 2
  3825.         ;;
  3826.     *)
  3827.         action="$action $1"
  3828.         ;;
  3829.     esac
  3830.     shift
  3831. done
  3832.  
  3833. # Run the specified action
  3834. for action_to_run in $action; do
  3835.     case "$action_to_run" in
  3836.     add)
  3837.         add_module
  3838.         ;;
  3839.     remove)
  3840.         # Make sure they're root
  3841.         if [ `id -u` -ne 0 ]; then
  3842.         echo $"You must be root to use this command." >&2
  3843.         exit 1
  3844.         fi
  3845.         remove_module
  3846.         ;;
  3847.     build)
  3848.         build_module
  3849.         ;;
  3850.     install)
  3851.             # Make sure they're root
  3852.         if [ `id -u` -ne 0 ]; then
  3853.         echo $"You must be root to use this command." >&2
  3854.         exit 1
  3855.         fi
  3856.         install_module
  3857.         ;;
  3858.     match)
  3859.         # Make sure they're root
  3860.         if [ `id -u` -ne 0 ]; then
  3861.         echo $"You must be root to use this command." >&2
  3862.         exit 1
  3863.         fi
  3864.         run_match
  3865.         ;;
  3866.     uninstall)
  3867.         # Make sure they're root
  3868.         if [ `id -u` -ne 0 ]; then
  3869.         echo $"You must be root to use this command." >&2
  3870.         exit 1
  3871.         fi
  3872.         uninstall_module
  3873.         ;;
  3874.     mkdriverdisk)
  3875.         # Make sure they're root
  3876.         if [ `id -u` -ne 0 ]; then
  3877.         echo $"You must be root to use this command." >&2
  3878.         exit 1
  3879.         fi
  3880.         make_driver_disk
  3881.         ;;
  3882.     mktarball)
  3883.         make_tarball
  3884.         ;;
  3885.     mkrpm)
  3886.         make_rpm
  3887.         ;;
  3888.     mkdeb)
  3889.         make_debian "deb"
  3890.         ;;
  3891.     mkdsc)
  3892.         make_debian "dsc"
  3893.         ;;
  3894.     mkkmp)
  3895.         make_kmp
  3896.         ;;
  3897.     ldtarball)
  3898.         # Make sure they're root if we're using --force
  3899.         if [ `id -u` -ne 0 ] && [ "$force" == "true" ]; then
  3900.         echo $"You must be root to use this command with the --force option." >&2
  3901.         exit 1
  3902.         fi
  3903.         load_tarball
  3904.         ;;
  3905.     status)
  3906.         show_status
  3907.         ;;
  3908.     "")
  3909.         echo "" >&2
  3910.         echo $"Error! No action was specified.">&2
  3911.         show_usage
  3912.         ;;
  3913.     *)
  3914.         echo "" >&2
  3915.         echo $"Error! Unknown action specified: $action_to_run" >&2
  3916.         show_usage
  3917.         ;;
  3918.     esac
  3919. done
  3920.